HEX
Server: Apache/2.4.65 (Debian)
System: Linux kubikelcreative 5.10.0-35-amd64 #1 SMP Debian 5.10.237-1 (2025-05-19) x86_64
User: www-data (33)
PHP: 8.4.13
Disabled: NONE
Upload Files
File: //usr/share/doc/node-dashdash/examples/date.js
#!/usr/bin/env node
/*
 * Small example showing dashdash's "date" option type.
 */

var dashdash = require('../lib/dashdash');

var options = [
    { names: ['start', 's'], type: 'date' },
    { names: ['end', 'e'], type: 'date' }
];

try {
    var opts = dashdash.parse({options: options});
} catch (e) {
    console.error('date.js: error: %s', e.message);
    process.exit(1);
}

if (opts.start) {
    console.log('start at', opts.start.toISOString());
}
if (opts.end) {
    console.log('end at', opts.end.toISOString());
}