Skip to content

Commit

Permalink
Post-merge
Browse files Browse the repository at this point in the history
  • Loading branch information
dcodeIO committed Mar 31, 2016
2 parents 7ccf3dd + 8bd86df commit 9d7bc2f
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
6 changes: 5 additions & 1 deletion dist/long.js
Original file line number Diff line number Diff line change
Expand Up @@ -253,9 +253,13 @@
throw Error('empty string');
if (str === "NaN" || str === "Infinity" || str === "+Infinity" || str === "-Infinity")
return ZERO;
if (typeof unsigned === 'number') // For goog.math.long compatibility
if (typeof unsigned === 'number') {
// For goog.math.long compatibility
radix = unsigned,
unsigned = false;
} else {
unsigned = !! unsigned;
}
radix = radix || 10;
if (radix < 2 || 36 < radix)
throw RangeError('radix');
Expand Down
2 changes: 1 addition & 1 deletion dist/long.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified dist/long.min.js.gz
Binary file not shown.
Loading

0 comments on commit 9d7bc2f

Please sign in to comment.