Created
December 5, 2024 21:50
-
-
Save colinhacks/6709773ab0fcb230b8cddbf25ac99933 to your computer and use it in GitHub Desktop.
Lazy box
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
function lazy<T>(getter: () => T): { value: T } { | |
return { | |
get value() { | |
const value = getter(); | |
Object.defineProperty(this, "value", { value }); | |
return value; | |
}, | |
}; | |
} | |
const myValue = lazy(() => "hello world"); | |
console.log(myValue.value); // computes value and overwrites getter | |
console.log(myValue.value); // returns cached value | |
console.log(myValue.value); // returns cached value |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment