Sha256: 5597973de3fe72443654aaadb660865f7c3d8d9dc5184fa2e46502748529c40a
Contents?: true
Size: 460 Bytes
Versions: 7
Compression:
Stored size: 460 Bytes
Contents
var opts = require("./nomnom") .option('debug', { abbr: 'd', flag: true, help: 'Print debugging info' }) .option('config', { abbr: 'c', default: 'config.json', help: 'JSON file with tests to run' }) .option('version', { flag: true, help: 'print version and exit', callback: function() { return "version 1.2.4"; } }) .parse(); if (opts.debug) { console.log("debug") }
Version data entries
7 entries across 7 versions & 4 rubygems