Fix
Lint / lint (push) Successful in 12s

This commit is contained in:
Julien Valverdé
2026-05-19 13:39:38 +02:00
parent 31f275ec44
commit 838a0003e9
+1 -1
View File
@@ -76,7 +76,7 @@ export const focusArrayAt: {
*/ */
export const focusArrayLength = <A extends readonly any[], E, R>( export const focusArrayLength = <A extends readonly any[], E, R>(
self: Subscribable.Subscribable<A, 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. * Narrows the focus to an indexed element of a readonly tuple.