1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-10 16:30:36 +01:00

12 lines
158 B
JavaScript
Raw Normal View History

2018-02-21 17:57:49 -08:00
export function thunk (fn) {
2018-02-21 17:52:33 -08:00
let value
let called
return () => {
if (!called) {
value = fn()
called = true
}
return value
}
2018-02-21 17:57:49 -08:00
}