Sign in
webkit
/
WebKit
/
8e0458971757386725aa85c3b7505ea8bd4932cd
/
.
/
Source
/
JavaScriptCore
/
tests
/
modules
/
destructuring-export
/
array.js
blob: 509d98b35de6bb4e9e388505fde784978972e7cf [
file
] [
log
] [
blame
]
var
value
=
[
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
];
export
const
[...
array
]
=
value
.
values
();