New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

simple-query-parser

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

simple-query-parser - npm Package Compare versions

Comparing version
1.1.3
to
1.1.4
+4
-0
CHANGELOG.md
# Simple query parse
## V1.1.4
- Accept - and _ in key
## V1.1.3

@@ -4,0 +8,0 @@

+2
-1

@@ -107,3 +107,4 @@ const comparatorObject = {

if (code < 48 || (code > 57 && code < 65) || (code > 90 && code < 97) || code > 122) {
// Allow [-_a-zA-Z0-9] in key
if (code !== 45 && code !== 95 && (code < 48 || (code > 57 && code < 65) || (code > 90 && code < 97) || code > 122)) {
return false

@@ -110,0 +111,0 @@ }

{
"name": "simple-query-parser",
"version": "1.1.3",
"version": "1.1.4",
"description": "Simple query parser",

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