feat(store): state subscription primitives (#528)

This commit is contained in:
rahim
2026-02-14 00:30:38 +11:00
committed by GitHub
parent aa0fb7ca70
commit 839a7e43bf
13 changed files with 463 additions and 34 deletions
+3
View File
@@ -0,0 +1,3 @@
export function identity<T>(value: T): T {
return value;
}
+1
View File
@@ -1,3 +1,4 @@
export { composeCallbacks } from './compose-callbacks';
export { identity } from './identity';
export { noop } from './noop';
export { tryCatch } from './try-catch';