Gets the name of a number, even if it's stupidly big. Supersedes TheoryOfNekomata/number-name.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

1234567891011121314151617181920212223242526
  1. # numerica
  2. Get the name of a number, even if it's stupidly big.
  3. ## References
  4. * [How high can you count?](http://www.isthe.com/chongo/tech/math/number/howhigh.html)
  5. ## Features
  6. * Stringify/parse numbers and names in American/British short count (e.g. "million", "billion", "trillion"), or European
  7. (e.g. "million", "milliard", "billion", "billiard", "trillion", "trilliard").
  8. * Support for exponential notation, even if in non-standard form (e.g. `123.45e+5`).
  9. * Support for negative numbers.
  10. See [TODO.md](TODO.md) for a list of features that are planned for implementation.
  11. ## Limitations
  12. * Can only stringify and parse numbers and names that resolve to integer values.
  13. * Exponents `x` in values are limited to `Number.MAX_SAFE_INTEGER >~ x >~ Number.MIN_SAFE_INTEGER`.
  14. Values may exceed extremes such as `Number.MAX_SAFE_INTEGER` and `Number.EPSILON` in which loss of
  15. precision may occur.
  16. * No support for arbitrary number names such as "googol".
  17. * No support for fractional number names such as "half", "quarter", "third", "tenth", etc.
  18. * Supports only native types (`bigint`, `string`, `number`).