magic-memo
v1.0.3
Published
A modern memoisation library that supports async/await and Promises
Downloads
7
Maintainers
Readme
Magic Memo
About
This is a package that helps with memoising data in Node and browser JS.
Usage
Import
import Memo from "magic-memo";
or
const Memo = require("magic-memo").default;
Calling
You can use the default hashing:
Memo.memo(() => {
console.log("I am a function");
});
or define your own hashing function
Memo.memo(
(myParam) => {
console.log("I am a function");
},
(myParam) => myParam
);