0.2.0 #5

Merged
Thilawyn merged 59 commits from next into master 2026-05-30 06:10:54 +02:00
Showing only changes of commit 838a0003e9 - Show all commits
+1 -1
View File
@@ -76,7 +76,7 @@ export const focusArrayAt: {
*/
export const focusArrayLength = <A extends readonly any[], E, R>(
self: Subscribable.Subscribable<A, E, R>,
): Subscribable.Subscribable<number, E, R> => Subscribable.map(self, a => a.length)
): Subscribable.Subscribable<number, E, R> => Subscribable.map(self, Array.length)
/**
* Narrows the focus to an indexed element of a readonly tuple.