test: Enable quality gate and touch a file

This commit is contained in:
Valere
2025-11-26 19:13:07 +01:00
parent 3491a68362
commit 2b3e2f6188
3 changed files with 56 additions and 3 deletions

View File

@@ -117,6 +117,10 @@ export class ObservableScope {
* values may be skipped.
*
* Basically, this is like React's useEffect but async and for Behaviors.
*
* @arg value$ - The Behavior to track.
* @arg callback - Called whenever the value must be handled. May return a clean-up function
*
*/
public reconcile<T>(
value$: Behavior<T>,
@@ -221,6 +225,7 @@ export class Epoch<T> {
this.value = value;
this.epoch = epoch ?? 0;
}
/**
* Maps the value inside the epoch to a new value while keeping the epoch number.
* # usage