in server/router/managers/cache-manager.js [38:50]
async get(fetchCallback) {
const { cache, cacheExpiryDateTime } = this;
if (cacheExpiryDateTime && Date.now() < cacheExpiryDateTime) {
return cache;
}
const data = await fetchCallback();
this.setCache(data);
return data;
}