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

6 lines
118 B
JavaScript

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