Files
babel/test/fixtures/generation/harmony-edgecase/spread-element/expected.js
2014-11-04 08:05:09 +11:00

5 lines
116 B
JavaScript

var [a, b, ...rest] = array;
const [a, b, ...rest] = array;
function a([a, b, ...rest]) {}
([a, b, ...rest]) => {};