This commit is contained in:
Rico Sta. Cruz 2015-04-05 18:54:58 +08:00
parent 816dbfc73a
commit e631cb8080
1 changed files with 12 additions and 0 deletions

12
yargs.md Normal file
View File

@ -0,0 +1,12 @@
---
title: Yargs
---
```js
var argv = require('yargs').argv;
argv._ // [ ... ]
argv.$0 // "node bin/mybin"
argv.verbose // --verbose
```