remove es20xx prefixes from plugins and rename folders (#6575)

This commit is contained in:
Henry Zhu
2017-10-28 20:43:15 -04:00
committed by GitHub
parent 92a3caeb9c
commit 9ac326b075
1672 changed files with 1200 additions and 1203 deletions

View File

@@ -0,0 +1,3 @@
var [a, [b], [c]] = ["hello", [", ", "junk"], ["world"]];
[a, [b], [c]] = ["hello", [", ", "junk"], ["world"]];
;

View File

@@ -0,0 +1,9 @@
var a = "hello",
_ref = [", ", "junk"],
b = _ref[0],
c = "world";
a = "hello";
var _ref2 = [", ", "junk"];
b = _ref2[0];
c = "world";
;