Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
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.20.34/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.