Convert english number(Arabic numerals) into Nepali words. Both in Nepali and English language.
12345 => बाह्र हजार, तीन सय पैँतालीस
6789 => छ हजार, सात सय उनान्नब्बे
12345 => Twelve Thousand, Three Hundred and Forty Five
10000000001 => Ten Arab, One
npm i num-to-nep-words
const numToNepaliWords = require('num-to-nep-words')
console.log(numToNepaliWords(123, 'np')) // एक सय तेईस
console.log(numToNepaliWords(123, 'en')) // One Hundred and Twenty Three
<!-- 1.0.4 is the version-->
<script src="https://unpkg.com/num-to-nep-words@1.0.4/conversion.js"></script>