v-number-to-words
TypeScript icon, indicating that this package has built-in type declarations

1.0.19 • Public • Published

Build Status Coverage Status

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 --save
yarn add v-number-to-words
bower install pluralize --save

Usage

Javascript

var vn2w = require('v-number-to-words');
var words = vn2w.numberToWords('1.1');
Output should be 'one and one tenth'

TypeScript

import { numberToWords } from 'v-number-to-words';
console.log(numberToWords(1.1))
Output should be 'one and one tenth'

AMD

define(function(require,exports,module){
  var vn2w = require('v-number-to-words');
});

Test

npm run test

Package Sidebar

Install

npm i v-number-to-words

Weekly Downloads

581

Version

1.0.19

License

MIT

Unpacked Size

109 kB

Total Files

19

Last publish

Collaborators

  • markoblad