mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
14 lines
218 B
JavaScript
14 lines
218 B
JavaScript
(function() {
|
|
// https://github.com/Constellation/esmangle/issues/65
|
|
var a = 1;
|
|
var b = 2;
|
|
var c = 3;
|
|
var d = [].e.f(arguments);
|
|
return [
|
|
a,
|
|
b,
|
|
c,
|
|
g
|
|
];
|
|
}());
|