1.0.2 • Published 4 years ago

number-to-nepali-digit v1.0.2

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

#What is This ? Convert English digit to nepali digit 1234 => १,२३४

Package Written with VanillaJava Script

#Installation

npm i number-to-nepali-digit --save

Then...

#Usage Import ToNepaliDigit in the root module(AppModule)

const {ToNepaliDigit} = require("number-to-nepali-digit");
const number = 1234;
// ToNepaliDigit returns a string and you can use it anywhere you want
console.log(ToNepaliDigit(number))