CB-13323 Updated checked-in node_modules

This commit is contained in:
Joe Bowser
2017-09-25 11:17:24 -07:00
parent dddb2837dd
commit 97aab900da
42 changed files with 542 additions and 178 deletions
+2
View File
@@ -1143,11 +1143,13 @@ var bigInt = (function (undefined) {
var sign = this.sign ? "-" : "";
return sign + str;
};
SmallInteger.prototype.toString = function (radix) {
if (radix === undefined) radix = 10;
if (radix != 10) return toBase(this, radix);
return String(this.value);
};
BigInteger.prototype.toJSON = SmallInteger.prototype.toJSON = function() { return this.toString(); }
BigInteger.prototype.valueOf = function () {
return +this.toString();