All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.dist.emotion-memoize.esm.js Maven / Gradle / Ivy

The newest version!
function memoize(fn) {
  var cache = Object.create(null);
  return function (arg) {
    if (cache[arg] === undefined) cache[arg] = fn(arg);
    return cache[arg];
  };
}

export { memoize as default };




© 2015 - 2024 Weber Informatics LLC | Privacy Policy