currency-in-wordsinr
v1.0.7
Published
Convert Input Amount to Words based on the Indian Rupee Format
Downloads
128
Readme
Installing
Package manager
Using npm:
$ npm install currency-in-wordsinr@latestUsing bower:
$ bower install currency-in-wordsinr@latestUsing yarn:
$ yarn add currency-in-wordsinr@latestUsing pnpm:
$ pnpm add currency-in-wordsinr@latestUsage
Once the package is installed, you can import the library using import or require approach:
import { currency_in_wordsinr } from 'currency-in-wordsinr';
console.log(currency_in_wordsinr('25000'));If you use require for importing:
const { currency_in_wordsinr } = require('currency-in-wordsinr');
console.log(currency_in_wordsinr('25000'));