Base single-precision floating-point number assert functions.
var assert = require( '@stdlib/number/float32/base/assert' );Namespace containing "base" single-precision floating-point number assert functions.
var ns = assert;
// returns {...}The namespace contains the following functions:
isAlmostEqual( a, b, maxULP ): test if two single-precision floating-point numbers are approximately equal within a specified number of ULPs (units in the last place).isAlmostSameValue( a, b, maxULP ): test if two single-precision floating-point numbers are approximately the same value within a specified number of ULPs (units in the last place).isSameValueZero( a, b ): test if two single-precision floating-point numbers are the same value.isSameValue( a, b ): test if two single-precision floating-point numbers are the same value.
var objectKeys = require( '@stdlib/utils/keys' );
var ns = require( '@stdlib/number/float32/base/assert' );
console.log( objectKeys( ns ) );