Skip to main content
Module

x/proc/mod3.ts>RangeUntilOptions

A better way to work with processes in Deno.
Go to Latest
interface RangeUntilOptions
import { type RangeUntilOptions } from "https://deno.land/x/proc@0.21.5/mod3.ts";

Options for an until range. The until value is inclusive.

Properties

optional
from: number

Starting number inclusive; defaults to 0.

until: number

Ending number inclusive.

optional
step: number

Step value. Defaults to 1.