Module

std/flags/mod.ts

Deno standard library
Go to Latest
import * as mod from "https://dotland.deno.dev/std@0.211.0/flags/mod.ts";

Examples

Example 1

import { parse } from "https://deno.land/std@0.211.0/flags/mod.ts";

console.dir(parse(Deno.args));

Functions

Take a set of command line arguments, optionally with a set of options, and return an object representing the flags found in the passed arguments.

Interfaces

The options for the parseArgs call.

Type Aliases

The value returned from parseArgs.