Created
April 16, 2018 19:51
-
-
Save dantman/2b1747a16b05affe042c6448ba827c21 to your computer and use it in GitHub Desktop.
Function decorator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@memoize | |
export default function myExpensiveFunction(data) { | |
// do something expensive | |
return result; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment