A Node.js module that converts a number to its word equivalent
npm install numtoword --save
yarn add numtoword
bower install numtoword --savevar numtoword = require('numtoword');
var word = numtoword.getWordFromNumber(100);Output should be 'One Hundred'import { getWordFromNumber } from 'numtoword';
console.log(getWordFromNumber(100))Output should be 'One Hundred'define(function(require,exports,module){
var numtoword = require('numtoword');
});npm run test