convert english numbers into bengali
npm install bengali-numbersbengali-numbers is a simple npm package designed to translate English numbers to Bengali digits. This package is useful for applications that need to display numbers in Bengali script for localization purposes.
- Convert English numerals to Bengali script.
- Easy to use with a simple API.
- Lightweight and fast.
You can install bengali-numbers via npm:
``bash`
npm install bengali-numbers
example usage
`bash
import toBnNumber from 'bengali-numbers';
const bengaliNumber = toBnNumber('1234567890');
console.log(bengaliNumber); // Output: ১২৩৪৫৬৭৮৯০
``