Get the name of a number, even if it's stupidly big.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
Это архивный репозиторий. Вы можете его клонировать или просматривать файлы, но не вносить изменения или открывать задачи/запросы на слияние.

16 строки
390 B

  1. import { Digit } from '../../../common'
  2. import NAMES from '../names'
  3. interface TenPlus {
  4. (ones: Digit): string
  5. }
  6. /**
  7. * Get the name of some number plus ten.
  8. * @param {number} x1 - The number in the ones place.
  9. * @returns {string} The name of the number plus ten.
  10. */
  11. const tenPlus: TenPlus = (x1) => (Number(x1) === 0 ? NAMES.tenTimes[1] : NAMES.tenPlus[x1])
  12. export default tenPlus