@symbolic/lib
Advanced tools
Comparing version 1.0.195 to 1.0.196
{ | ||
"name": "@symbolic/lib", | ||
"version": "1.0.195", | ||
"version": "1.0.196", | ||
"description": "plain js utilities", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -7,3 +7,2 @@ import ManyKeysMap from 'many-keys-map'; | ||
var memoizedFn = (...args) => { | ||
console.log('memoizedFn'); | ||
var value; | ||
@@ -13,3 +12,2 @@ var cacheKeyArray = _.flatMap(argSpecs, (argSpec, index) => argSpec.destructure ? Object.values(args[index]) : args[index]); | ||
if (cache.has(cacheKeyArray)) { | ||
console.log('cache hit'); | ||
value = cache.get(cacheKeyArray); | ||
@@ -16,0 +14,0 @@ } |
Sorry, the diff of this file is too big to display
147963
2865