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