npm install @senthiljruby/inwords --save
Converts the number to word (number system).
Currently it supports Indian and western english,
- Planning to give more supports language like (french, spanish, arabic, ....)
- Planning to provide support to regional indian language (Tamil, Telugu, Hindi,...)
Here's an example of a Feathers server that uses @senthiljruby/inwords
.
const feathers = require('@feathersjs/feathers');
const inWords = require('@senthiljruby/inwords');
// Initialize the application
const app = feathers();
// Initialize the plugin
app.configure(inWords());
app.service('numbersystem').inWords(105000000, 'in') // Indian Way of number to word
>> ten crore fifty lakh
app.service('numbersystem').inWords(105000000) // Western English is default.
>> one hundred five million
Copyright (c) 2018
Licensed under the MIT license.
Author