( obj: Eachable<Value, Key, This>, fn: EachFn<Value, Key, This> )
| 40 | |
| 41 | /** Minifiable `.forEach` call */ |
| 42 | export const each = <Value, Key, This>( |
| 43 | obj: Eachable<Value, Key, This>, |
| 44 | fn: EachFn<Value, Key, This> |
| 45 | ) => obj.forEach(fn) |
| 46 | |
| 47 | /** Iterate the properties of an object */ |
| 48 | export function eachProp<T extends object, This>( |
no test coverage detected
searching dependent graphs…