Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
url-search-params
Advanced tools
This is a polyfill for the URLSearchParams API.
It is possible to simply include build/url-search-params.js or grab it via npm.
npm install url-search-params
The function is exported directly.
var URLSearchParams = require('url-search-params');
MIT Style License
In case you'd like to replace the broken global native constructor, you can check some well known issue before including this polyfill on your project/page.
<script>
try { if (new URLSearchParams('q=%2B').get('q') !== '+') throw {}; }
catch (error) {
window.URLSearchParams = void 0;
document.write('<script src="/js/url-search-params.js"><'+'/script>');
}
</script>
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 <a> links supported
}
If you do this check instead:
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.
FAQs
Simple polyfill for URLSearchParams standard
The npm package url-search-params receives a total of 58,916 weekly downloads. As such, url-search-params popularity was classified as popular.
We found that url-search-params demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.