You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
throw new RangeError( 'invalid argument. Second argument must be a nonnegative integer. Value: `%d`.', N );
330
330
}
331
-
if ( K < 0 ) <spanclass="branch-0 cbranch-no" title="branch not covered" >{</span>
332
-
<spanclass="cstat-no" title="statement not covered" > throw new RangeError( 'invalid argument. Third argument must be a nonnegative integer. Value: `%d`.', K );</span>
333
-
<spanclass="cstat-no" title="statement not covered" > }</span>
331
+
if ( K < 0 ) {
332
+
throw new RangeError( 'invalid argument. Third argument must be a nonnegative integer. Value: `%d`.', K );
333
+
}
334
334
if ( strideA1 === 0 ) {
335
335
throw new RangeError( 'invalid argument. Sixth argument must be non-zero. Value: `%d`.', strideX );
0 commit comments