Hans 601f9b38f8 feat(@angular/cli): move angular-cli to @angular/cli (#4328)
This release is otherwise identical to beta.28.
2017-02-01 18:19:50 -08:00

16 lines
367 B
JavaScript

'use strict';
module.exports = function(option, commandArgs) {
var results = [], value, i;
var optionIndex = commandArgs.indexOf(option);
if (optionIndex === -1) { return results; }
for (i = optionIndex + 1; i < commandArgs.length; i++) {
value = commandArgs[i];
if (/^\-+/.test(value)) { break; }
results.push(value);
}
return results;
};