Documentation / @ripl/utilities / objectForEach
Function: objectForEach() ​
objectForEach<
TSource>(input,iteratee):void
Defined in: collection.ts:165
Iterates over the enumerable properties of an object, invoking the iteratee for each key-value pair.
Type Parameters ​
| Type Parameter |
|---|
TSource extends IterableObject |
Parameters ​
| Parameter | Type |
|---|---|
input | TSource |
iteratee | ObjectIteratee<keyof TSource, TSource[keyof TSource]> |
Returns ​
void