/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 /.
'use strict'; var parse = require('../');var test = require('tape'); test('stops parsing on the first non-option when stopEarly is set', function (t) { var argv = parse(['--aaa', 'bbb', 'ccc', '--ddd'], { stopEarly: true, }); t.deepEqual(argv, { aaa: 'bbb', _: ['ccc', '--ddd'], }); t.end();});