var hasAsyncAwaitSupport = require( '@stdlib/utils/detect-async-await-support' );
Detects if a runtime environment supports ES2017 async
/await
.
var bool = hasAsyncAwaitSupport();
// returns <boolean>
var hasAsyncAwaitSupport = require( '@stdlib/utils/detect-async-await-support' );
var bool = hasAsyncAwaitSupport();
if ( bool ) {
console.log( 'Environment has native async/await support.' );
} else {
console.log( 'Environment lacks native async/await support.' );
}
Usage: hasasyncawait [options]
Options:
-h, --help Print this message.
-V, --version Print the package version.
$ hasasyncawait
<boolean>