export function forEach(value: Iterable, action: (it: T) => void) { for (const it of value) { action(it); } }