@lvchengbin/url

0.3.0 • Public • Published

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>

Package Sidebar

Install

npm i @lvchengbin/url

Weekly Downloads

25

Version

0.3.0

License

MIT

Unpacked Size

81.2 kB

Total Files

12

Last publish

Collaborators

  • lvchengbin