Convert amount in words
npm install amount-in-words
const atwp = require('amount-in-words');
const atw = new atwp.AmountToWords();
console.log(atw.toWords(111.11, atwp.CountryCodes.IND));
`
#### Usage - Typescript
`
import { AmountToWords, CountryCodes } from "amount-in-words";
const atw = new AmountToWords();
console.log(atw.toWords(123.45, CountryCodes.GBR));
``