Skip to content
This repository has been archived by the owner on Dec 20, 2022. It is now read-only.

LvChengbin/url

Repository files navigation

URL

Polyfill for URL and URLSearchParams. Totally following the implementation of Google Chrome.

Installation

$ npm i @lvchengbin/url --save

Usage

const { URL, URLSearchParams } = require( '@lvchengbin/url' );

ES6

import { URL, URLSearchParams } from '@lvchengbin/url';

Loading with <SCRIPT> tag

If you want to use this library in browsers and to load it with <SCRIPT> tag, you should use url.js, and if you want to use the library in browsers which do not support ES6 syntax, you should use url.bc.js instead.

<script src="./url.bc.js"></script>
<script>
    var url = new JURL.URL( 'http://www.google.com/path?x=1&y=2' );        
    var params = new JURL.URLSearchParams( 'x=1&y=2' );
    console.log( 'url', url );
    console.log( 'params', params );
</script>

About

Polyfill for URL and URLSearchParams conforming the implementation of Google Chrome

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published