UNPKG

react-kiwi-dropdown

Version:

A minimal, easy-to-use and highly adjustable dropdown component made with ReactJS.

11 lines (8 loc) 208 B
// @flow export default function memoize<V>(fn: string => V): string => V { const cache = {} return (arg: string) => { if (cache[arg] === undefined) cache[arg] = fn(arg) return cache[arg] } }