time-to-botec/js/node_modules/@stdlib/assert/has-set-support
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00
..
bin feat: add the node modules 2022-12-03 12:44:49 +00:00
docs feat: add the node modules 2022-12-03 12:44:49 +00:00
etc feat: add the node modules 2022-12-03 12:44:49 +00:00
lib feat: add the node modules 2022-12-03 12:44:49 +00:00
package.json feat: add the node modules 2022-12-03 12:44:49 +00:00
README.md feat: add the node modules 2022-12-03 12:44:49 +00:00

Set Support

Detect native Set support.

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>