Skip to main content
Module

x/proc/mod3.ts>RangeToOptions

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

Options for a to range. The to range is exclusive.

Properties

optional
from: number

Starting number inclusive; defaults to 0.

to: number

Ending number exclusinve.

optional
step: number

Step value. Defaults to 1.