Skip to content

Commit 3c89f15

Browse files
committed
fix for issue #163
1 parent c263df1 commit 3c89f15

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

BigInteger.js

+5-6
Original file line numberDiff line numberDiff line change
@@ -986,15 +986,14 @@ var bigInt = (function (undefined) {
986986
var powers2Length = powersOfTwo.length, highestPower2 = powersOfTwo[powers2Length - 1];
987987

988988
function shift_isSmall(n) {
989-
return ((typeof n === "number" || typeof n === "string") && +Math.abs(n) <= BASE) ||
990-
(n instanceof BigInteger && n.value.length <= 1);
989+
return Math.abs(n) <= BASE;
991990
}
992991

993-
BigInteger.prototype.shiftLeft = function (n) {
992+
BigInteger.prototype.shiftLeft = function (v) {
993+
var n = parseValue(v).toJSNumber();
994994
if (!shift_isSmall(n)) {
995995
throw new Error(String(n) + " is too large for shifting.");
996996
}
997-
n = +n;
998997
if (n < 0) return this.shiftRight(-n);
999998
var result = this;
1000999
if (result.isZero()) return result;
@@ -1006,12 +1005,12 @@ var bigInt = (function (undefined) {
10061005
};
10071006
NativeBigInt.prototype.shiftLeft = SmallInteger.prototype.shiftLeft = BigInteger.prototype.shiftLeft;
10081007

1009-
BigInteger.prototype.shiftRight = function (n) {
1008+
BigInteger.prototype.shiftRight = function (v) {
10101009
var remQuo;
1010+
var n = parseValue(v).toJSNumber();
10111011
if (!shift_isSmall(n)) {
10121012
throw new Error(String(n) + " is too large for shifting.");
10131013
}
1014-
n = +n;
10151014
if (n < 0) return this.shiftLeft(-n);
10161015
var result = this;
10171016
while (n >= powers2Length) {

spec/spec.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)