ric-utils-misc
Advanced tools
Comparing version 1.0.57 to 1.0.58
@@ -190,7 +190,3 @@ /* | ||
if (value && value.toFixed) { | ||
let [tmp, exp] = value.toFixed(fixed).split('e+'); | ||
if (exp) { | ||
tmp = parseFloat(tmp).toFixed(fixed) | ||
} | ||
value = parseFloat(tmp); | ||
value = parseFloat(value.toFixed(fixed)); | ||
} | ||
@@ -197,0 +193,0 @@ return value; |
@@ -58,6 +58,2 @@ /* | ||
if (item._id && item._fresh) return invert ? false : true; | ||
if (item._id && item._selected) return invert ? false : true; | ||
for (const key in item) { | ||
@@ -64,0 +60,0 @@ let value = item[key]; |
{ | ||
"name": "ric-utils-misc", | ||
"version": "1.0.57", | ||
"version": "1.0.58", | ||
"description": "Miscellaneous utility functions", | ||
@@ -5,0 +5,0 @@ "main": "index", |
44841
1654