Skip to content

Instantly share code, notes, and snippets.

@colinhacks
Created December 5, 2024 21:50
Show Gist options
  • Save colinhacks/6709773ab0fcb230b8cddbf25ac99933 to your computer and use it in GitHub Desktop.
Save colinhacks/6709773ab0fcb230b8cddbf25ac99933 to your computer and use it in GitHub Desktop.
Lazy box
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