@extra-number/to-indian-system

Convert number to Indian system.

Usage no npm install needed!

<script type="module">
  import extraNumberToIndianSystem from 'https://cdn.skypack.dev/@extra-number/to-indian-system';
</script>

README

Convert number to Indian system.

const toIndianSystem = require('@extra-number/to-indian-system');
// toIndianSystem(<number>, [separator=,])

toIndianSystem(500000);
// '5,00,000'
toIndianSystem(-20000000);
// '-2,00,00,000'
toIndianSystem(-4321.1234567, ' ');
// '-4 321.123 45 67'

extra-number