npm.io
0.5.10 • Published 5 years ago

url-ponyfill

Licence
MIT
Version
0.5.10
Deps
0
Size
37 kB
Vulns
0
Weekly
0
Stars
3

URL-ponyfill

UMD & ponyfill fork of webcomponents/URL

Usage

ES2015 (webpack, rollup, etc)

import { URL } from 'url-ponyfill'

Node.js

const { URL } = require('url-ponyfill')

Polyfill

import { URL, hasNativeURL } from 'url-ponyfill';

if (!hasNativeURL) {
    self.URL = URL;
}

License

MIT