|  | ||
|---|---|---|
| .. | ||
| bin | ||
| docs | ||
| etc | ||
| lib | ||
| package.json | ||
| README.md | ||
Set Support
Detect native
Setsupport.
Usage
var hasSetSupport = require( '@stdlib/assert/has-set-support' );
hasSetSupport()
Detects if a runtime environment supports ES2015 Set.
var bool = hasSetSupport();
// returns <boolean>
Examples
var hasSetSupport = require( '@stdlib/assert/has-set-support' );
var bool = hasSetSupport();
if ( bool ) {
    console.log( 'Environment has Set support.' );
} else {
    console.log( 'Environment lacks Set support.' );
}
CLI
Usage
Usage: has-set-support [options]
Options:
  -h,    --help                Print this message.
  -V,    --version             Print the package version.
Examples
$ has-set-support
<boolean>