From 554b04d7859b6712041b090c6c570d23776e346d Mon Sep 17 00:00:00 2001 From: Ben Burwell Date: Fri, 29 Jul 2016 12:01:09 -0400 Subject: Add readme --- README.md | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..7dbac4b --- /dev/null +++ b/README.md @@ -0,0 +1,34 @@ +# itoa + +a javascript library for converting numbers to their names + +[![Build Status](https://travis-ci.org/benburwell/itoa.svg?branch=master)](https://travis-ci.org/benburwell/itoa) +[![npm version](https://badge.fury.io/js/iota.svg)](https://badge.fury.io/js/itoa) + +# usage + +```javascript +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: + +```javascript +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](https://travis-ci.org/benburwell/itoa) + +# contributing + +bug reports, features requests, and patches are all welcome. [create an issue](https://github.com/benburwell/itoa/issues/new), or [fork the repo and make a pull request back from your feature branch](https://guides.github.com/introduction/flow/). + +[bignumber.js]: https://github.com/MikeMcl/bignumber.js + -- cgit v1.2.3