1 line
No EOL
129 B
TypeScript
1 line
No EOL
129 B
TypeScript
export default function memoize<ArgType = any, ReturnType = any>(fn: (arg: ArgType) => ReturnType): (arg: ArgType) => ReturnType; |