1.0.0 • Published 4 years ago

ic-num-conv v1.0.0

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

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.

License

MIT