powiaina_num.js 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/PowiainaNum.esm.js +1 -1
- package/package.json +1 -1
package/PowiainaNum.esm.js
CHANGED
|
@@ -1677,7 +1677,7 @@
|
|
|
1677
1677
|
return Math.log10(Number(str.substring(0, LONG_STRING_MIN_LENGTH))) + (str.length - LONG_STRING_MIN_LENGTH);
|
|
1678
1678
|
}
|
|
1679
1679
|
Q.fromString = function (input, nocache=false) {
|
|
1680
|
-
originalInput = input;
|
|
1680
|
+
var originalInput = input;
|
|
1681
1681
|
if (typeof input != "string") throw Error(invalidArgument + "Expected String");
|
|
1682
1682
|
if (C[input] && !nocache) {
|
|
1683
1683
|
var x = new PowiainaNum();
|
package/package.json
CHANGED