Skip to content

Latest commit

 

History

History
25 lines (14 loc) · 268 Bytes

README.md

File metadata and controls

25 lines (14 loc) · 268 Bytes

argv

process argv from command line

Usage

var args = require('./args.js');

  a = args.get();
  
  console.log(a);

Command Line

node index.js name=helondeng age=25 female

Output

{ name: 'helondeng', age: '25', female: true }