Skip to main content
Module

x/proc/mod3.ts>RangeToOptions

A high-level way to run child processes that is easy, flexible, powerful, and prevents resource leaks.
Go to Latest
interface RangeToOptions
import { type RangeToOptions } from "https://deno.land/x/proc@0.20.20/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.