Skip to content

Commit 8f8f509

Browse files
authored
Apply suggestions from code review
Co-authored-by: Athan <kgryte@gmail.com> Signed-off-by: Athan <kgryte@gmail.com>
1 parent e8de381 commit 8f8f509

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

  • lib/node_modules/@stdlib/number/int32/base/muldw/lib

lib/node_modules/@stdlib/number/int32/base/muldw/lib/main.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020

2121
// MODULES //
2222

23-
var isnan = require( '@stdlib/math/base/assert/is-nan' );
2423
var fcn = require( './assign.js' );
2524

2625

@@ -38,10 +37,6 @@ var fcn = require( './assign.js' );
3837
* // returns [ -477218589, 1908874354 ]
3938
*/
4039
function imuldw( a, b ) {
41-
if ( isnan( a ) || isnan( b ) ) {
42-
return [ NaN, NaN ];
43-
}
44-
4540
return fcn( a, b, [ 0, 0 ], 1, 0 );
4641
}
4742

0 commit comments

Comments
 (0)