UNPKG

es-toolkit

Version:

A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.

25 lines (24 loc) 880 B
import { bigIntRangeLength } from "../_internal/bigIntRangeLength.mjs"; //#region src/bigint/range.ts /** * Returns an array of bigints from `start` up to, but not including, `end`, incrementing by `step`. * * @param start - The exclusive end of the range when called with one argument, otherwise the inclusive start. * @param end - The exclusive end of the range. * @param step - The amount to increment by. Must not be `0n`. * @returns An array of bigints. * @throws {Error} If `step` is `0n`. */ function range(start, end, step = 1n) { if (end == null) { end = start; start = 0n; } if (step === 0n) throw new Error("The step value must be a non-zero bigint."); const length = bigIntRangeLength(start, end, step); const result = new Array(length); for (let i = 0; i < length; i++) result[i] = start + BigInt(i) * step; return result; } //#endregion export { range };