Skip to content

Commit 0a0007e

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

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • lib/node_modules/@stdlib/blas/ext/base/ssort/test/fixtures

lib/node_modules/@stdlib/blas/ext/base/ssort/test/fixtures/num2str.js

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

2121
// MODULES //
2222

23-
var isNegativeZero = require( '@stdlib/math/base/assert/is-negative-zero' );
23+
var isNegativeZerof = require( '@stdlib/math/base/assert/is-negative-zerof' );
2424

2525

2626
// MAIN //
@@ -33,7 +33,7 @@ var isNegativeZero = require( '@stdlib/math/base/assert/is-negative-zero' );
3333
* @returns {string} string representation
3434
*/
3535
function num2str( value ) {
36-
if ( isNegativeZero( value ) ) {
36+
if ( isNegativeZerof( value ) ) {
3737
return '-0';
3838
}
3939
return value.toString();

0 commit comments

Comments
 (0)