UNPKG
vega-format
Version:
latest (2.0.0)
2.0.0
1.1.3
1.1.2
1.1.1
1.1.0
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
JavaScript string formatting utilities for Vega.
vega-format
/
src
/
memoize.js
5 lines
(4 loc)
•
118 B
JavaScript
View Raw
1
2
3
4
5
export default function(
method
)
{ const cache = {};
return
spec =>
cache[spec] || (cache[spec] =
method
(spec)); }