export default (it: Iterable): number => { let count = 0; for (const _ of it) { count++; } return count; };