export function first(iterable: Iterable): T | undefined { for (const element of iterable) { return element } return undefined }