We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 754e400 commit f373a32Copy full SHA for f373a32
1 file changed
lib/node_modules/@stdlib/string/format/lib/format_double.js
@@ -26,7 +26,9 @@ var lowercase = require( '@stdlib/string/lowercase' );
26
var replace = require( '@stdlib/string/replace' );
27
var isfinite = require( '@stdlib/math/base/assert/is-finite' );
28
var isNumber = require( '@stdlib/assert/is-number' ).isPrimitive;
29
-var abs = require( '@stdlib/math/base/special/abs' );
+
30
+// NOTE: for the following, we explicitly avoid using stdlib packages in this particular package in order to avoid circular dependencies.
31
+var abs = Math.abs; // eslint-disable-line stdlib/no-builtin-math
32
33
34
// VARIABLES //
0 commit comments