Skip to content

Instantly share code, notes, and snippets.

@kriskowal
Created August 31, 2009 02:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kriskowal/178258 to your computer and use it in GitHub Desktop.
Save kriskowal/178258 to your computer and use it in GitHub Desktop.
exports.NarwhalParser = type([args.Parser], function (self, supr) {
self.option('-h', '--help')
.help('displays help')
.action(function () {
});
});
exports.ObjjParser = type([exports.NarwhalParser], function (self, supr) {
self.option('-h', '--help')
.help('displays help')
.action(function () {
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment