1.0.3 • Published 4 years ago

convert-numbers-to-english v1.0.3

Weekly downloads
-
License
ISC
Repository
github
Last release
4 years ago

Convert numbers

Due to keeping consistency in our data transfer with API's we need to make sure digits or numbers entered by user inputs have always transferred by English. Since users could always fill data with different keyboard settings we need to make sure that we don't send Arabic or Persian numbers to our database. So to avoid such an inconsistency we should always translate our numbers or prevent a user from entering unwanted data. Convert numbers created for this cause to make sure every digit input is in standard format of it.

How it works?

To install it you can simply do the following command:

npm i convert-numbers-to-english
or
yarn add convert-numbers-to-english

to include with ES5 or common js you can simply do this:

var ConvertNumbers = require('convert-numbers-to-english');

or to include with ES6 you simply do this one:

import ConvertNumbers from 'convert-numbers-to-english'

then to use it within your application you can do it just like this:

ConvertNumbers('۱۲۳۴۵۶۷۸۹۰') // It will return 1234567890 in string format.
1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago