UNPKG

fff-js

Version:
8 lines (7 loc) 176 B
export default function *rangeL(start = 0, stop = start, step = 1) { if (arguments.length == 1) start = 0; while (start < stop) { yield start; start += step; } }