a8e5aeb23167b13cee1a445b7fe40f3d9c2ff8f4
[platform/framework/web/crosswalk-tizen.git] /
1 #!/usr/bin/env node
2 var argv = require('optimist')
3     .string('x', 'y')
4     .argv
5 ;
6 console.dir([ argv.x, argv.y ]);
7
8 /* Turns off numeric coercion:
9     ./node string.js -x 000123 -y 9876
10     [ '000123', '9876' ]
11 */