Socket
Socket
Sign inDemoInstall

query-params-parser

Package Overview
Dependencies
0
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.1.11 to 0.1.12

5

index.js

@@ -22,3 +22,6 @@ export function parseParams(baseObject, params = new URLSearchParams(window.location.search), arrSeparator = ',') {

for(const [key, value] of Object.entries(baseObject)) {
if(!value) continue;
if(!value) {
params.delete(key);
continue;
}

@@ -25,0 +28,0 @@ if(params.has(key)) {

2

package.json
{
"name": "query-params-parser",
"author": "Lucas Levandoski",
"version": "0.1.11",
"version": "0.1.12",
"description": "A simple library to parse query params into proper types",

@@ -6,0 +6,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc