DIR:/home/mykeywordtracker.com/www/node_modules/@emotion/memoize/src/ |
Current File : //home/mykeywordtracker.com/www/node_modules/@emotion/memoize/src/index.ts |
export default function memoize<V>(fn: (arg: string) => V): (arg: string) => V { const cache: Record<string, V> = Object.create(null) return (arg: string) => { if (cache[arg] === undefined) cache[arg] = fn(arg) return cache[arg] } } |