File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/node_modules/minimist/test

This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.

parse_modified.js237 B · 12 lines
'use strict'; var parse = require('../');var test = require('tape'); test('parse with modifier functions', function (t) {	t.plan(1); 	var argv = parse(['-b', '123'], { boolean: 'b' });	t.deepEqual(argv, { b: true, _: [123] });});