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( format( 'invalid argument. Fourth argument must be a nonnegative integer. Value: `%d`.', N ) );
415
415
}
416
-
if ( K < 0 ) <spanclass="branch-0 cbranch-no" title="branch not covered" >{</span>
417
-
<spanclass="cstat-no" title="statement not covered" > throw new RangeError( format( 'invalid argument. Fifth argument must be a nonnegative integer. Value: `%d`.', K ) );</span>
418
-
<spanclass="cstat-no" title="statement not covered" > }</span>
416
+
if ( K < 0 ) {
417
+
throw new RangeError( format( 'invalid argument. Fifth argument must be a nonnegative integer. Value: `%d`.', K ) );
throw new RangeError( format( 'invalid argument. Third argument must be a nonnegative integer. Value: `%d`.', N ) );
334
334
}
335
-
if ( K < 0 ) <spanclass="branch-0 cbranch-no" title="branch not covered" >{</span>
336
-
<spanclass="cstat-no" title="statement not covered" > throw new RangeError( format( 'invalid argument. Fourth argument must be a nonnegative integer. Value: `%d`.', K ) );</span>
337
-
<spanclass="cstat-no" title="statement not covered" > }</span>
335
+
if ( K < 0 ) {
336
+
throw new RangeError( format( 'invalid argument. Fourth argument must be a nonnegative integer. Value: `%d`.', K ) );
337
+
}
338
338
if ( strideC1 === 0 ) {
339
339
throw new RangeError( format( 'invalid argument. Sixteenth argument must be non-zero. Value: `%d`.', strideC1 ) );
0 commit comments