Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

karl-common-util

Package Overview
Dependencies
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

karl-common-util - npm Package Compare versions

Comparing version 1.4.8 to 1.4.9

9

dist/http/index.js

@@ -97,3 +97,10 @@ "use strict";

v = v.map(function (d) {
return encodeURI(d);
if ((typeof d === "undefined" ? "undefined" : _typeof(d)) === "object") {
for (var k1 in d) {
d[k1] = encodeURI(k1);
}
return d;
} else {
return encodeURI(d);
}
});

@@ -100,0 +107,0 @@ }

2

package.json
{
"name": "karl-common-util",
"version": "1.4.8",
"version": "1.4.9",
"description": "karl common lib for client and server",

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

@@ -61,3 +61,10 @@ import "isomorphic-fetch"

v = v.map(d => {
return encodeURI(d)
if (typeof (d) === "object") {
for (let k1 in d) {
d[k1] = encodeURI(k1)
}
return d
} else {
return encodeURI(d)
}
})

@@ -64,0 +71,0 @@ }

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc