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