1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-04 02:09:32 +02:00

Fix stf local not accepting multiple serials. Fixes #91.

This commit is contained in:
Simo Kinnunen 2015-10-14 01:56:30 +09:00
parent b248e96dc2
commit 0942ecea7a
2 changed files with 5 additions and 18 deletions

View file

@ -7,14 +7,6 @@ module.exports.size = function(val) {
return match ? [+match[1], +match[2]] : undefined
}
module.exports.allUnknownArgs = function(args) {
return [].slice.call(args, 0, -1).filter(Boolean)
}
module.exports.lastArg = function(args) {
return args[args.length - 1]
}
module.exports.range = function(from, to) {
var items = []
, i