export function range(start: number, end: number) { return Array(end - start + 1) .fill(null) .map((_, i) => start + i); }