CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
stop_early.js18 linesDownload Raw Back to test
1'use strict';2 3var parse = require('../');4var test = require('tape');5 6test('stops parsing on the first non-option when stopEarly is set', function (t) {7	var argv = parse(['--aaa', 'bbb', 'ccc', '--ddd'], {8		stopEarly: true,9	});10 11	t.deepEqual(argv, {12		aaa: 'bbb',13		_: ['ccc', '--ddd'],14	});15 16	t.end();17});18 
basant307/AI_Governance_Project · CoolFace