/** * Speed up consecutive function calls by caching the result of calls with identical input * https://en.wikipedia.org/wiki/Memoization * @param {function} compute - the function to be memoized */ export declare function memoize(compute: Function): (args: any) => any; //# sourceMappingURL=memoize.d.ts.map