Mauro Bringolf 92fc26d399 Remove check-constants plugin (#6987)
* Rebased onto new version

* Moved constants check into a separate method
2018-01-26 10:43:09 -05:00

5 lines
118 B
JavaScript

const [a, b] = [1, 2];
const [c, d] = [3, 4];
const { e, f } = { e: 5, f: 6 };
const { a: g, b: h } = { a: 7, b: 8 };