itoa
v1.0.2
Published
Convert 10 to ten, all the way up to one centillion!
Downloads
4
Readme
itoa
a javascript library for converting numbers to their names
usage
var itoa = require('itoa');
console.log(itoa(42)); // => 'forty two'
console.log(itoa('11233440')); // => 'eleven million two hundred thirty three thousand four hundred forty'
specify true
as the second parameter to get an "and" in there:
console.log(itoa('101')); // => 'one hundred one'
console.log(itoa('101', true)); // => 'one hundred and one'
the number will be parsed with bignumber.js, so you can use whatever format is supported.
supported node versions
each release is tested against the latest patch of every minor version of node.js released since 0.10. see the .travis.yml
file for specifics, and be sure to check the latest build results
contributing
bug reports, features requests, and patches are all welcome. create an issue, or fork the repo and make a pull request back from your feature branch.