Skip to content

Commit

Permalink
ver. 0.1.13
Browse files Browse the repository at this point in the history
  • Loading branch information
qili.taoqili committed May 22, 2019
1 parent ca26d4a commit 786971e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion HISTORY.md
@@ -1,4 +1,4 @@
## 0.1.12
## 0.1.13
* `FIXED` fix bug when fixNum is 0

## 0.1.11
Expand Down
1 change: 1 addition & 0 deletions demo/FormatterDemo.js
Expand Up @@ -15,6 +15,7 @@ log(Formatter.money('6566456.65466545')); // "6 566 456.65466545"
log(Formatter.money('6566456.65466545', ',')); // "6,566,456.65466545"
log(Formatter.money('6566456', ',')); // "6,566,456"
log(Formatter.money('6566456', ',', 4)); // "6,566,456.0000"
log(Formatter.money('6566456.1', ',', 0)); // "6,566,456"
log(Formatter.money('6566456', ',', 2)); // "6,566,456.00"
log(Formatter.money('6566456.65466545', ',', 4)); // "6,566,456.6547"
log(Formatter.money('6566456.65466545', ',', 2)); // "6,566,456.65"
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "uxcore-formatter",
"version": "0.1.12",
"version": "0.1.13",
"description": "a formatter library for uxcore",
"repository": "https://github.com/uxcore/uxcore-formatter.git",
"author": "eternalsky",
Expand Down

0 comments on commit 786971e

Please sign in to comment.