time-to-botec/js/node_modules/@stdlib/assert/has-proxy-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

Proxy Support

Detect native Proxy support.

Usage

var hasProxySupport = require( '@stdlib/assert/has-proxy-support' );

hasProxySupport()

Detects if a runtime environment supports ES2015 Proxy.

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

Notes

  • The implementation uses code evaluation, which may be problematic in browser contexts enforcing a strict content security policy (CSP).

Examples

var hasProxySupport = require( '@stdlib/assert/has-proxy-support' );

var bool = hasProxySupport();
if ( bool ) {
    console.log( 'Environment has native Proxy support.' );
} else {
    console.log( 'Environment lacks native Proxy support.' );
}

CLI

Usage

Usage: has-proxy-support [options]

Options:

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

Examples

$ has-proxy-support
<boolean>