time-to-botec/squiggle/node_modules/@stdlib/constants/float64/smallest-normal/README.md
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

1.5 KiB

Smallest Normal

Smallest positive normalized double-precision floating-point number.

Usage

var FLOAT64_SMALLEST_NORMAL = require( '@stdlib/constants/float64/smallest-normal' );
FLOAT64_SMALLEST_NORMAL

Smallest positive normalized double-precision floating-point number.

var bool = ( FLOAT64_SMALLEST_NORMAL === 2.2250738585072014e-308 );
// returns true

Examples

var FLOAT64_SMALLEST_NORMAL = require( '@stdlib/constants/float64/smallest-normal' );

console.log( FLOAT64_SMALLEST_NORMAL );
// => 2.2250738585072014e-308