Nicolò Ribaudo e914d1219f
Correctly transform spreads of arrays with holes (#13439)
* Correctly transform spreads of arrays with holes

* Use `arrayWithoutHoles` helper

* Add exec test

* Update for Babel 8

Co-authored-by: phapp88 <phapp1988@gmail.com>
2021-06-10 12:34:42 +02:00

3 lines
57 B
JavaScript

var a = [...['a',, 'b']];
var b = ['a', ...['b',, 'c']];