File Explorer

/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 /.

0 dirs
15 files
stop_early.js312 B · 18 lines
'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();});