Skip to main content
Module

x/cliffy/prompt/_utils.ts

Command line framework for deno 🦕 Including Commandline-Interfaces, Prompts, CLI-Table, Arguments Parser and more...
Extremely Popular
Go to Latest
File
/** Alias method for Number constructor. */// deno-lint-ignore no-explicit-anyexport function parseNumber(value: any): number { return Number(value);}