Skip to content

Latest commit

 

History

History
91 lines (55 loc) · 1.39 KB

File metadata and controls

91 lines (55 loc) · 1.39 KB

Generator Support

Detect native generator function support.

Usage

var hasGeneratorSupport = require( '@stdlib/utils/detect-generator-support' );

hasGeneratorSupport()

Detects if a runtime environment supports ES2015 generator functions, i.e. function*().

var bool = hasGeneratorSupport();
// returns <boolean>

Examples

var hasGeneratorSupport = require( '@stdlib/utils/detect-generator-support' );

var bool = hasGeneratorSupport();
if ( bool ) {
    console.log( 'Environment has native generator function support.' );
} else {
    console.log( 'Environment lacks native generator function support.' );
}

CLI

Usage

Usage: hasgenerators [options]

Options:

  -h,    --help                Print this message.
  -V,    --version             Print the package version.

Examples

$ hasgenerators
<boolean>