Assert

Base single-precision floating-point number assert functions.

Usage

var assert = require( '@stdlib/number/float32/base/assert' );

assert

Namespace containing "base" single-precision floating-point number assert functions.

var ns = assert;
// returns {...}

The namespace contains the following functions:

Examples

var objectKeys = require( '@stdlib/utils/keys' );
var ns = require( '@stdlib/number/float32/base/assert' );

console.log( objectKeys( ns ) );
Did you find this page helpful?