Detect native function
namesupport.
var hasFunctionNameSupport = require( '@stdlib/assert/has-function-name-support' );Detects if a runtime environment supports the ES2015 function name property.
var bool = hasFunctionNameSupport();
// returns <boolean>var hasFunctionNameSupport = require( '@stdlib/assert/has-function-name-support' );
var bool = hasFunctionNameSupport();
if ( bool ) {
console.log( 'Environment has function name support.' );
} else {
console.log( 'Environment lacks function name support.' );
}Usage: has-function-name-support [options]
Options:
-h, --help Print this message.
-V, --version Print the package version.
$ has-function-name-support
<boolean>