@zodash/memoize
Advanced tools
Comparing version 1.0.8 to 1.0.9
@@ -6,2 +6,10 @@ # Change Log | ||
## 1.0.9 (2019-08-18) | ||
**Note:** Version bump only for package @zodash/memoize | ||
## [1.0.8](https://github.com/zcorky/zodash/compare/@zodash/memoize@1.0.7...@zodash/memoize@1.0.8) (2019-06-26) | ||
@@ -8,0 +16,0 @@ |
@@ -1,8 +0,7 @@ | ||
declare function memoize<T extends any[], R>(fn: (...args: T) => R, resolver: (...args: T) => string): { | ||
export declare function memoize<T extends any[], R>(fn: (...args: T) => R, resolver: (...args: T) => string): { | ||
(...args: T): R; | ||
cache: Map<any, any>; | ||
}; | ||
declare namespace memoize { | ||
export declare namespace memoize { | ||
var Cache: MapConstructor; | ||
} | ||
export default memoize; |
{ | ||
"name": "@zodash/memoize", | ||
"version": "1.0.8", | ||
"version": "1.0.9", | ||
"description": "Create a function that memoizes the result of `func` according to the `resolver` function.", | ||
@@ -68,3 +68,3 @@ "keywords": [ | ||
}, | ||
"gitHead": "dd91d0fe2842c83c320afe9e83b45a47ed1c9930" | ||
"gitHead": "6c1755b25a09f63825ac91dbce0952612d190b65" | ||
} |
4261
25