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 62a91f3 commit ed49835Copy full SHA for ed49835
lib/node_modules/@stdlib/constants/float32/min-ln/lib/index.js
@@ -29,11 +29,6 @@
29
* // returns -87.3365478515625
30
*/
31
32
-// MODULES //
33
-
34
-var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' );
35
36
37
// MAIN //
38
39
/**
@@ -52,7 +47,7 @@ var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' );
52
47
* @default -87.3365478515625
53
48
* @see [IEEE 754]{@link https://en.wikipedia.org/wiki/IEEE_754-1985}
54
49
55
-var FLOAT32_MIN_LN = float64ToFloat32( -87.3365478515625 );
50
+var FLOAT32_MIN_LN = -87.3365478515625;
56
51
57
58
// EXPORTS //
0 commit comments