UNPKG

wsh-range

Version:
14 lines (11 loc) 435 B
import { range } from './index'; let print = x => console.log(x); print("it should iterate over 0 - 2"); for (let x of range(3)) print(x); print("it should iterate over 10 - 12"); for (let x of range(10, 13)) print(x); print("it should iterate over 20 - 40 with step 5"); for (let x of range(20, 40, 5)) print(x); print("it should iterate over down 80 - 60 with step 3"); for (let x of range(80, 60, 3)) print(x); print("succeess");