Add "allowArrayLike" opt to destructuring and spread transforms (#11265)
This commit is contained in:
5
packages/babel-plugin-transform-spread/test/fixtures/allowArrayLike/simple/exec.js
vendored
Normal file
5
packages/babel-plugin-transform-spread/test/fixtures/allowArrayLike/simple/exec.js
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
var p2 = { 0: "b", 1: "c", 2: "d", length: 3 };
|
||||
|
||||
var arr = ["a", ...p2, "e"];
|
||||
|
||||
expect(arr).toEqual(["a", "b", "c", "d", "e"]);
|
||||
Reference in New Issue
Block a user