mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
17 lines
372 B
JavaScript
17 lines
372 B
JavaScript
|
var weakMemoize = function weakMemoize(func) {
|
||
|
// $FlowFixMe flow doesn't include all non-primitive types as allowed for weakmaps
|
||
|
var cache = new WeakMap();
|
||
|
return function (arg) {
|
||
|
if (cache.has(arg)) {
|
||
|
// $FlowFixMe
|
||
|
return cache.get(arg);
|
||
|
}
|
||
|
|
||
|
var ret = func(arg);
|
||
|
cache.set(arg, ret);
|
||
|
return ret;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
export default weakMemoize;
|