dict-utils

Home > dict-utils > dictForEach

dictForEach() function

Signature:

export declare function dictForEach<T, S>(from: Dict<T>, callback: (val: T, key: string | number, from: Dict<T>) => void): void;

Parameters

Parameter Type Description
from Dict<T>  
callback (val: T, key: string | number, from: Dict<T>) => void  

Returns:

void