ic-num-conv
v1.0.0
Published
Arabic digital converter
Downloads
2
Readme
num-conver
Arabic digital converter.
Install
npm i ic-num-conv --save
Usage
Use with ts
import * as numConver from 'ic-num-conv';
const input = [9999, 9999, 9999, 9999, 9999, 9999, 9999, 9003].join('');
const cnNum = numConver.transform(input);
console.log(Date.now(), 'input:', input, 'output:', cnNum);
Use with js
const numConver = require('ic-num-conv');
const input = [9999, 9999, 9999, 9999, 9999, 9999, 9999, 9003].join('');
const cnNum = numConver.transform(input);
console.log(Date.now(), 'input:', input, 'output:', cnNum);
Contributing
Feel free to dive in! Open an issue or submit PRs.