UNPKG

164 BJavaScriptView Raw
1var cmd = require('./lib/cmd');
2
3exports.parse = function(args){
4 cmd.parse(args);
5};
6
7
8if (module === require.main) {
9 exports.parse(process.argv);
10}