Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

bare-url

Package Overview
Dependencies
Maintainers
2
Versions
56
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bare-url - npm Package Compare versions

Comparing version
2.2.0
to
2.2.1
+4
-2
lib/url-search-params.js

@@ -144,4 +144,6 @@ module.exports = class URLSearchParams {

const name = sequence.substring(0, i)
const value = sequence.substring(i + 1, sequence.length)
const name = decodeURIComponent(sequence.substring(0, i))
const value = decodeURIComponent(
sequence.substring(i + 1, sequence.length)
)

@@ -148,0 +150,0 @@ let list = this._params.get(name)

{
"name": "bare-url",
"version": "2.2.0",
"version": "2.2.1",
"description": "WHATWG URL implementation for JavaScript",

@@ -5,0 +5,0 @@ "exports": {