Files
babel/test/fixtures/generation/harmony-edgecase/spread-element/expected.js
2014-11-01 19:34:16 +11:00

23 lines
174 B
JavaScript

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