pico-lambda
Advanced tools
Comparing version 2.0.1 to 2.1.0
{ | ||
"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); |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
37909
44
0