This repository has been archived on 2025-07-07. You can view files and clone it, but cannot push or open issues or pull requests.
Files
eternos/frontend/style/node_modules/next/dist/lib/with-promise-cache.js
2025-01-11 09:54:09 +03:00

24 lines
625 B
JavaScript

/* eslint-disable no-redeclare */ "use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "withPromiseCache", {
enumerable: true,
get: function() {
return withPromiseCache;
}
});
function withPromiseCache(cache, fn, getKey) {
return (...values)=>{
const key = getKey ? getKey(...values) : values[0];
let p = cache.get(key);
if (!p) {
p = fn(...values);
p.catch(()=>cache.del(key));
cache.set(key, p);
}
return p;
};
}
//# sourceMappingURL=with-promise-cache.js.map