Socket
Socket
Sign inDemoInstall

express-idempotency-redis-adapter

Package Overview
Dependencies
4
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.3 to 1.0.4

2

package.json
{
"name": "express-idempotency-redis-adapter",
"version": "1.0.3",
"version": "1.0.4",
"description": "",

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

@@ -64,3 +64,15 @@ import {

return jsonDump ? (JSON.parse(jsonDump) as IdempotencyResource) : null;
if (jsonDump) {
const payload = {
idempotencyKey,
...(JSON.parse(jsonDump) as Omit<
IdempotencyResource,
'idempotencyKey'
>),
};
return payload;
}
return null;
}

@@ -67,0 +79,0 @@

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