1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-20 22:45:26 +00:00
notes/node_modules/yargs/example/implies.js
Patrick Marsceill b7b0d0d7bf
Initial commit
2017-03-09 13:16:08 -05:00

11 lines
176 B
JavaScript

#!/usr/bin/env node
var argv = require('yargs')
.usage('Usage: $0 -x [num] -y [num]')
.implies('x', 'y')
.argv;
if (argv.x) {
console.log(argv.x / argv.y);
}