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 0fd55fc commit 0a0007eCopy full SHA for 0a0007e
1 file changed
lib/node_modules/@stdlib/blas/ext/base/ssort/test/fixtures/num2str.js
@@ -20,7 +20,7 @@
20
21
// MODULES //
22
23
-var isNegativeZero = require( '@stdlib/math/base/assert/is-negative-zero' );
+var isNegativeZerof = require( '@stdlib/math/base/assert/is-negative-zerof' );
24
25
26
// MAIN //
@@ -33,7 +33,7 @@ var isNegativeZero = require( '@stdlib/math/base/assert/is-negative-zero' );
33
* @returns {string} string representation
34
*/
35
function num2str( value ) {
36
- if ( isNegativeZero( value ) ) {
+ if ( isNegativeZerof( value ) ) {
37
return '-0';
38
}
39
return value.toString();
0 commit comments