UNPKG

@discord-user-card/core

Version:

The core behind the Discord User Card project.

10 lines 274 B
export function memoize(fn) { const cache = new Map(); return ((...args) => { const key = JSON.stringify(args); if (!cache.has(key)) cache.set(key, fn(...args)); return cache.get(key); }); } //# sourceMappingURL=memoize.js.map