* Correctly transform spreads of arrays with holes * Use `arrayWithoutHoles` helper * Add exec test * Update for Babel 8 Co-authored-by: phapp88 <phapp1988@gmail.com>
3 lines
57 B
JavaScript
3 lines
57 B
JavaScript
var a = [...['a',, 'b']];
|
|
var b = ['a', ...['b',, 'c']];
|