mirror of
https://github.com/apache/cordova-android.git
synced 2026-04-23 00:00:09 +08:00
CB-13323 Updated checked-in node_modules
This commit is contained in:
+2
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user