UNPKG

hasurl

Version:

Determine whether the native WHATWG URL implementation is available.

19 lines (11 loc) 181 B
"use strict"; let hasNative; const hasURL = () => { if (hasNative === undefined) { hasNative = "URL" in require("url"); } return hasNative; }; module.exports = hasURL;