pinafore/routes/_utils/thunk.js
2018-02-21 17:52:33 -08:00

11 lines
156 B
JavaScript

export function thunk(fn) {
let value
let called
return () => {
if (!called) {
value = fn()
called = true
}
return value
}
}