import { numberRange } from "https://deno.land/x/froebel@v0.18.0/mod.ts";
Constructs a numeric between start
and end
inclusively.
Examples
Example 1
Example 1
range(2, 6) // -> [2, 3, 4, 5, 6]
range(8, 9, .3) // -> [8, 8.3, 8.6, 8.9]
range(3, -2) // -> [3, 2, 1, 0, -1, -2]