diff --git a/src/computed.ts b/src/computed.ts index bd1e654..881474c 100644 --- a/src/computed.ts +++ b/src/computed.ts @@ -11,4 +11,7 @@ export class Computed extends AlienComputed { get value(): T { return this.get(); } + peek(): T { + return this.currentValue; + } }