File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -986,15 +986,14 @@ var bigInt = (function (undefined) {
986
986
var powers2Length = powersOfTwo . length , highestPower2 = powersOfTwo [ powers2Length - 1 ] ;
987
987
988
988
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 ;
991
990
}
992
991
993
- BigInteger . prototype . shiftLeft = function ( n ) {
992
+ BigInteger . prototype . shiftLeft = function ( v ) {
993
+ var n = parseValue ( v ) . toJSNumber ( ) ;
994
994
if ( ! shift_isSmall ( n ) ) {
995
995
throw new Error ( String ( n ) + " is too large for shifting." ) ;
996
996
}
997
- n = + n ;
998
997
if ( n < 0 ) return this . shiftRight ( - n ) ;
999
998
var result = this ;
1000
999
if ( result . isZero ( ) ) return result ;
@@ -1006,12 +1005,12 @@ var bigInt = (function (undefined) {
1006
1005
} ;
1007
1006
NativeBigInt . prototype . shiftLeft = SmallInteger . prototype . shiftLeft = BigInteger . prototype . shiftLeft ;
1008
1007
1009
- BigInteger . prototype . shiftRight = function ( n ) {
1008
+ BigInteger . prototype . shiftRight = function ( v ) {
1010
1009
var remQuo ;
1010
+ var n = parseValue ( v ) . toJSNumber ( ) ;
1011
1011
if ( ! shift_isSmall ( n ) ) {
1012
1012
throw new Error ( String ( n ) + " is too large for shifting." ) ;
1013
1013
}
1014
- n = + n ;
1015
1014
if ( n < 0 ) return this . shiftLeft ( - n ) ;
1016
1015
var result = this ;
1017
1016
while ( n >= powers2Length ) {
You can’t perform that action at this time.
0 commit comments