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

pico-lambda

Package Overview
Dependencies
Maintainers
2
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pico-lambda - npm Package Compare versions

Comparing version 2.0.1 to 2.1.0

2

package.json
{
"name": "pico-lambda",
"version": "2.0.1",
"version": "2.1.0",
"description": "native functional js",

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

@@ -1,2 +0,6 @@

const ctx = (typeof window !== 'undefined') ? window : module ? module.exports : {};
const ctx = module
? module.exports
: (typeof window !== 'undefined')
? window
: {}

@@ -3,0 +7,0 @@ const c = (fn, ...params) => fn.length <= params.length ? fn(...params) : (...others) => c(fn, ...params, ...others);

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