Skip to content

Instantly share code, notes, and snippets.

@LarryKarani
Created January 13, 2022 11:52
Show Gist options
  • Save LarryKarani/66cfe9df9c4cbf5476bba646c8998a0f to your computer and use it in GitHub Desktop.
Save LarryKarani/66cfe9df9c4cbf5476bba646c8998a0f to your computer and use it in GitHub Desktop.
import memoize from "lodash.meoize";
const MyFunction = (age) => {
return `Your are ${age} years old!`
}
const MyMemoizedFunction = memoize(MyFunction)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment