Standard library math implementations which favor speed over correctness.
var fastmath = require( '@stdlib/fastmath' );
Standard library fast math.
var ns = fastmath;
// returns {...}
- Implementations may violate strict IEEE semantics.
- Implementations may assume arguments and results are not
NaN
. - Implementations may assume arguments are neither positive or negative
infinity
. - Implementations may ignore the sign of zero.
var getKeys = require( 'object-keys' ).shim();
var fastmath = require( '@stdlib/fastmath' );
console.log( getKeys( fastmath ) );