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

@domonda/query-params

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@domonda/query-params - npm Package Compare versions

Comparing version
1.5.2
to
1.5.3
+8
-0
CHANGELOG.md

@@ -6,2 +6,10 @@ # Change Log

## [1.5.3](https://github.com/domonda/domonda-js/compare/@domonda/query-params@1.5.2...@domonda/query-params@1.5.3) (2020-04-20)
**Note:** Version bump only for package @domonda/query-params
## [1.5.2](https://github.com/domonda/domonda-js/compare/@domonda/query-params@1.5.1...@domonda/query-params@1.5.2) (2020-03-18)

@@ -8,0 +16,0 @@

+2
-2
{
"name": "@domonda/query-params",
"version": "1.5.2",
"version": "1.5.3",
"description": "Useful but simple query params manipulator for React.",

@@ -36,3 +36,3 @@ "keywords": [

"lodash.pickby": "^4.6.0",
"query-string": "^6.11.1"
"query-string": "^6.12.1"
},

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

@@ -21,6 +21,3 @@ "use strict";

function strictUriEncode(str) {
return encodeURIComponent(str).replace(/[!'()*]/g, (x) => `%${x
.charCodeAt(0)
.toString(16)
.toUpperCase()}`);
return encodeURIComponent(str).replace(/[!'()*]/g, (x) => `%${x.charCodeAt(0).toString(16).toUpperCase()}`);
}

@@ -27,0 +24,0 @@ exports.strictUriEncode = strictUriEncode;