UNPKG

@studiometa/js-toolkit

Version:

A set of useful little bits of JavaScript to boost your project! 🚀

5 lines (4 loc) • 170 B
/** * Create an array from a given range and with the given incremental step. */ export declare function createRange(min: number, max: number, step: number): number[];