We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de73acf commit d196732Copy full SHA for d196732
lib/node_modules/@stdlib/math/base/special/lcmf/lib/main.js
@@ -20,7 +20,7 @@
20
21
// MODULES //
22
23
-var isnan = require( '@stdlib/math/base/assert/is-nan' );
+var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
24
var gcd = require( '@stdlib/math/base/special/gcd' );
25
26
@@ -62,7 +62,7 @@ function lcmf( a, b ) {
62
}
63
// Note: we rely on `gcd` to perform further argument validation...
64
d = gcd( a, b );
65
- if ( isnan( d ) ) {
+ if ( isnanf( d ) ) {
66
return d;
67
68
return (a/d) * b;
0 commit comments