(initialValue)
| 4 | |
| 5 | const framework: ReactiveFramework = { |
| 6 | signal(initialValue) { |
| 7 | const s = signal(initialValue); |
| 8 | return { |
| 9 | read: () => s(), |
| 10 | write: (v) => s(v), |
| 11 | }; |
| 12 | }, |
| 13 | computed(fn) { |
| 14 | const c = computed(fn); |
| 15 | return { read: () => c() }; |
nothing calls this directly
no test coverage detected
searching dependent graphs…