Guest User

Untitled

a guest
Jul 21st, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. program
  2. .command('search <search_query>')
  3. .alias('-s')
  4. .description('Search for a question')
  5. .action((searchKey)=>{
  6. console.log(searchKey)
  7. })
  8. program.parse(process.argv);
Add Comment
Please, Sign In to add comment