UNPKG

infrastructure-components

Version:

Infrastructure-Components configure the infrastructure of your React-App as part of your React-Components.

14 lines (10 loc) 260 B
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); function memoize(fn) { var cache = {}; return function (arg) { if (cache[arg] === undefined) cache[arg] = fn(arg); return cache[arg]; }; } exports.default = memoize;