Function
Function namespace.
Usage
var ns = require( '@stdlib/function' );
ns
Function namespace.
var o = ns;
// returns {...}
The namespace contains the following:
- Function( [...argNames,] body ): function constructor.
- function2string( fcn ): return a string representing the source code of a provided function.
Examples
var objectKeys = require( '@stdlib/utils/keys' );
var ns = require( '@stdlib/function' );
console.log( objectKeys( ns ) );