blob: aa5a0739822c7e32396bcde8cf6013f3f04b98e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
'use strict';
const mimicFn = require('mimic-fn');
const cacheStore = new WeakMap();
const defaultCacheKey = function (x) {
if (arguments.length === 1 && (x === null || x === undefined || (typeof x !== 'function' && typeof x !== 'object'))) {
return x;
}
return JSON.stringify(arguments);
};
module.exports = (fn, opts) => {
opts = Object.assign({
cacheKey: defaultCacheKey,
cache: new Map()
}, opts);
const memoized = function () {
const cache = cacheStore.get(memoized);
const key = opts.cacheKey.apply(null, arguments);
if (cache.has(key)) {
const c = cache.get(key);
if (typeof opts.maxAge !== 'number' || Date.now() < c.maxAge) {
return c.data;
}
}
const ret = fn.apply(null, arguments);
cache.set(key, {
data: ret,
maxAge: Date.now() + (opts.maxAge || 0)
});
return ret;
};
mimicFn(memoized, fn);
cacheStore.set(memoized, opts.cache);
return memoized;
};
module.exports.clear = fn => {
const cache = cacheStore.get(fn);
if (cache && typeof cache.clear === 'function') {
cache.clear();
}
};
|