Assert

Assertion utility tools.

Usage

var tools = require( '@stdlib/assert/tools' );

tools

Namespace for assertion utility tools.

var o = tools;
// returns {...}

The namespace contains the following:

Examples

var objectKeys = require( '@stdlib/utils/keys' );
var tools = require( '@stdlib/assert/tools' );

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