time-to-botec/squiggle/node_modules/@stdlib/constants/float32/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 single-precision floating-point number.

Usage

var FLOAT32_SMALLEST_NORMAL = require( '@stdlib/constants/float32/smallest-normal' );

FLOAT32_SMALLEST_NORMAL

Smallest positive normalized single-precision floating-point number.

var bool = ( FLOAT32_SMALLEST_NORMAL === 1.1754943508222875e-38 );
// returns true

Examples

var FLOAT32_SMALLEST_NORMAL = require( '@stdlib/constants/float32/smallest-normal' );

console.log( FLOAT32_SMALLEST_NORMAL );
// => 1.1754943508222875e-38