Lively 950d3519e8
fix destructuring of empty string (#13444)
* fix destructuring empty string

* use variable on expect

* overwrite all tests

* fix test cases
2021-06-14 17:07:12 +02:00

4 lines
41 B
JavaScript

let [a] = '';
expect(a).toBe(undefined)