Skip to content

Latest commit

 

History

History
91 lines (55 loc) · 1.25 KB

File metadata and controls

91 lines (55 loc) · 1.25 KB

Proxy Support

Detect native Proxy support.

Usage

var hasProxySupport = require( '@stdlib/utils/detect-proxy-support' );

hasProxySupport()

Detects if a runtime environment supports ES2015 Proxy.

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

Examples

var hasProxySupport = require( '@stdlib/utils/detect-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: hasproxy [options]

Options:

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

Examples

$ hasproxy
<boolean>