包详细信息

hasurl

stevenvachon604.9kMIT1.0.0

Determine whether the native WHATWG URL implementation is available.

uri, url, whatwg

自述文件

hasurl NPM Version Build Status

Determine whether Node.js' native WHATWG URL implementation is available.

Installation

Node.js >= 4 is required. To install, type this at the command line:

npm install hasurl

Usage

const hasURL = require('hasurl');

if (hasURL()) {
    // supported
} else {
    // fallback
}