https://github.com/github/url-search-params
Simple polyfill for URLSearchParams standard
https://github.com/github/url-search-params
Last synced: 5 months ago
JSON representation
Simple polyfill for URLSearchParams standard
- Host: GitHub
- URL: https://github.com/github/url-search-params
- Owner: github
- License: mit
- Archived: true
- Fork: true (WebReflection/url-search-params)
- Created: 2018-02-28T11:08:49.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2019-05-17T22:30:56.000Z (almost 7 years ago)
- Last Synced: 2024-09-25T21:11:04.470Z (over 1 year ago)
- Language: JavaScript
- Size: 71.3 KB
- Stars: 12
- Watchers: 4
- Forks: 17
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
url-search-params
=================
[](http://travis-ci.org/WebReflection/url-search-params) [](https://cdnjs.com/libraries/url-search-params) [](https://github.com/WebReflection/donate)
This is a polyfill for the [URLSearchParams API](https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams).
It is possible to simply include [build/url-search-params.js](build/url-search-params.js) or grab it via npm.
```
npm install url-search-params
```
The function is exported directly.
```js
var URLSearchParams = require('url-search-params');
```
MIT Style License
#### About HTMLAnchorElement.prototype.searchParams
This property is already implemented in Firefox and polyfilled here only for browsers that exposes getters and setters
through the `HTMLAnchorElement.prototype`.
In order to know if such property is supported, you **must** do the check as such:
```
if ('searchParams' in HTMLAnchorElement.prototype) {
// polyfill for links supported
}
```
If you do this check instead:
```js
if (HTMLAnchorElement.prototype.searchParams) {
// throws a TypeError
}
```
this polyfill will reflect native behavior, throwing a type error due access to a property in a non instance of `HTMLAnchorElement`.
Nothing new to learn here, [just a reminder](http://webreflection.blogspot.co.uk/2011/08/please-stop-reassigning-for-no-reason.html).