Skip to content

Latest commit

 

History

History

detect-proxy-support

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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>