Removed obsolete and unused utility fns

This commit is contained in:
Steve Gravrock
2022-06-11 11:17:16 -07:00
parent 135ff20123
commit e2e2275d41
7 changed files with 36 additions and 118 deletions

View File

@@ -32,7 +32,7 @@ getJasmineRequireObj().ReportDispatcher = function(j$) {
reporters.push(fallbackReporter);
}
const onComplete = args[args.length - 1];
args = j$.util.argsToArray(args).splice(0, args.length - 1);
args = Array.from(args).splice(0, args.length - 1);
const fns = [];
for (const reporter of reporters) {
addFn(fns, reporter, method, args);