Files
babel/packages/babel-generator/test/fixtures/harmony-edgecase/spread-element/output.js
2018-01-09 15:36:42 +01:00

6 lines
117 B
JavaScript

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