UNPKG
motion-utils
Version:
canary (12.7.5-alpha.2)
latest (12.23.6)
12.23.6
12.23.2
12.23.1
12.19.0
12.18.2
12.18.1
12.12.1
12.9.4
12.8.3
12.7.5
12.7.5-alpha.2
12.7.5-alpha.1
12.7.5-alpha.0
12.7.2
12.6.5
12.6.4
12.6.4-alpha.0
12.6.3
12.6.3-alpha.0
12.5.0
12.4.10
12.0.0
11.18.1
11.16.0
11.14.3
11.14.1
11.13.0
11.13.0-beta.0
github.com/motiondivision/motion
motiondivision/motion
motion-utils
/
dist
/
es
/
memo.mjs
12 lines
(10 loc)
•
203 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
/*#__NO_SIDE_EFFECTS__*/
function
memo
(
callback
) {
let
result;
return
() =>
{
if
(result ===
undefined
) result =
callback
();
return
result; }; }
export
{ memo };