12 lines
178 B
JavaScript

"use strict";
function foo() {
return bar([].concat(babelHelpers.slice.call(arguments)));
}
function bar(one, two, three) {
return [one, two, three];
}
foo("foo", "bar");