New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

lambda-api

Package Overview
Dependencies
Maintainers
1
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lambda-api - npm Package Compare versions

Comparing version 0.11.1 to 0.11.2

8

lib/utils.js

@@ -160,5 +160,7 @@ 'use strict';

exports.deepMerge = (a, b) => {
Object.keys(b).forEach((key) =>
key in a ? this.deepMerge(a[key], b[key]) : Object.assign(a, b)
);
Object.keys(b).forEach((key) => {
if (key === '__proto__') return;
if (typeof b[key] !== 'object') return Object.assign(a, b);
return key in a ? this.deepMerge(a[key], b[key]) : Object.assign(a, b);
});
return a;

@@ -165,0 +167,0 @@ };

{
"name": "lambda-api",
"version": "0.11.1",
"version": "0.11.2",
"description": "Lightweight web framework for your serverless applications",

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

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