1.0.1 • Published 5 years ago

nprintf v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

nprintf

npm version  Build Status Coverage Status

将一个数字格式化,转换方式和 c 语言的 printf 方法保持一致。

Format numbers like c printf.

How to use

npm install --save nprintf
import printf from 'nprintf';
console.log(printf('%.2f', 11)); // 11.00, type: string
console.log(printf('%.2f', 11.355)); // 11.36 type: number

Attention

注意格式化模板需要符合以下正则,否则将抛出错误。

just support format rule like this. /^%([#\-+0 ]*)?([1-9]\d*)?(?:\.(\d+))?([dfeEoxXi])(%)?$/

Questions & Bugs?

Welcome to report to us with issue if you meet any question or bug. Issue

License

MIT License.

1.0.1

5 years ago

1.0.0

5 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

7 years ago

0.0.1

7 years ago