Skip to content
This repository was archived by the owner on Dec 18, 2020. It is now read-only.

Commit 2f5e21c

Browse files
committed
fixed build
1 parent 6eff38f commit 2f5e21c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Global/Unsafe.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,18 @@ exports.unsafeStringify = function (x) {
1010
exports.unsafeToFixed = function (n) {
1111
return function (digits) {
1212
return n.toFixed(digits);
13-
}
13+
};
1414
};
1515

1616
exports.unsafeToExponential = function (n) {
1717
return function (digits) {
1818
return n.toExponential(digits);
19-
}
19+
};
2020
};
2121

2222
exports.unsafeToPrecision = function (n) {
2323
return function (digits) {
2424
return n.toPrecision(digits);
25-
}
25+
};
2626
};
2727

0 commit comments

Comments
 (0)