number-add-commas
v1.1.2
Published
This is a simple npm package to add comas to numbers in either the international number system or the Indian number system.
Downloads
23
Maintainers
Readme
number-add-commas
This is a simple npm package to add commas to numbers in either the international number system or the Indian number system.
How to use?
// include the package
import { addCommas } from "number-add-comas";
addCommas(100000, "INT"); //this will return 100,000
addCommas(100000, "IND"); //this will return 1,00,000