v-number-to-words
A Node.js module that returns the spelling of numbers, whether passed as a string or a float. Generally reliable for up to 16 (or 17 in some cases) of floats.
Installation
npm install v-number-to-words --saveyarn add v-number-to-wordsbower install pluralize --save
Usage
Javascript
var vn2w = ;var words = vn2w;
Output should be 'one and one tenth'
TypeScript
;console.lognumberToWords11
Output should be 'one and one tenth'
AMD
;
Test
npm run test