// No argumentsconst noop = _ => {}; const range = (min, max) => ( Array(max - min + 1).fill(0).map((_, i) => min + i););