Get the name of a number, even if it's stupidly big.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

15 rivejä
318 B

  1. import { NumberSystem } from '../../common'
  2. import getKiloCount from './getKiloCount'
  3. import getShortKiloName from './getShortKiloName'
  4. import joinKilo from './joinKilo'
  5. const numberSystem: NumberSystem = {
  6. getKiloCount,
  7. getKiloName: {
  8. short: getShortKiloName,
  9. },
  10. joinKilo,
  11. }
  12. export default numberSystem