Package Exports
- url-polyfill
- url-polyfill/url
- url-polyfill/url-polyfill.min.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (url-polyfill) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Polyfill URL and URLSearchParams to match last ES7 specifications
Tested on IE 10+
Install
npm i url-polyfill --save
Currently supported
window.URL
Documentation: https://developer.mozilla.org/en-US/docs/Web/API/URL
Supported : 'hash', 'host', 'hostname', 'href', 'port', 'protocol', 'search', 'toString', 'pathname', 'origin', 'searchParams'
Example:
const url = new URL('https://www.yahoo.com/?fr=yset_ie_syc_oracle&type=orcl_hpset#page0');
- hash:
"page0"
- host:
"www.yahoo.com"
- hostname:
"www.yahoo.com"
- href:
"https://www.yahoo.com/?fr=yset_ie_syc_oracle&type=orcl_hpset#page0"
- origin:
"https://www.yahoo.com"
- pathname:
"/"
- port:
""
- protocol:
"https:"
- search:
"?fr=yset_ie_syc_oracle&type=orcl_hpset"
- searchParams: URLSearchParams (see next)
window.URLSearchParams
Documentation: https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams
Supported : 'append', 'delete', 'get', 'getAll', 'has', 'set', 'forEach', 'keys', 'values', 'entries', 'toString', 'Symbol.iterator'
Example:
const url = new URL('https://www.yahoo.com/?fr=yset_ie_syc_oracle&type=orcl_hpset#page0');
url.searchParams.append('page', 0);
console.log(url.toString()); // print: "https://www.yahoo.com/?fr=yset_ie_syc_oracle&type=orcl_hpset&page=0#page0"