Skip to content

基于Deno环境的Typescript检测运行参数中包含指定参数。

License

Notifications You must be signed in to change notification settings

IT-Pianist/has-flag

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

has-flag

检测运行参数中包含指定参数

遇到 -- 参数时,忽略后面的参数

Install

import hasFlag from "https://deno.land/x/has_flag/mod.ts"

Usage

console.log(hasFlag('unicorn'))
//=> true

console.log(hasFlag('--unicorn'))
//=> true

console.log(hasFlag('f'))
//=> true

console.log(hasFlag('-f'))
//=> true

console.log(hasFlag('foo=bar'))
//=> true

console.log(hasFlag('foo'))
//=> false

console.log(hasFlag('rainbow'))
//=> false
deno run --inspect-brk -A test.ts -f --unicorn --foo=bar -- --rainbow 

API

License

MIT © [IT-Pinaist]

About

基于Deno环境的Typescript检测运行参数中包含指定参数。

Resources

License

Stars

Watchers

Forks

Packages

No packages published