Files
babel/packages/babel-plugin-transform-spread/test/fixtures/spread/arguments/expected.js

10 lines
141 B
JavaScript

function foo() {
return bar.apply(void 0, arguments);
}
function bar(one, two, three) {
return [one, two, three];
}
foo("foo", "bar");