nprintf
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

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.

Dependencies (0)

    Dev Dependencies (20)

    Package Sidebar

    Install

    npm i nprintf

    Weekly Downloads

    1

    Version

    1.0.1

    License

    MIT

    Unpacked Size

    18.1 kB

    Total Files

    7

    Last publish

    Collaborators

    • jxz_211