summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/bundle/fixture09.out
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/bundle/fixture09.out')
-rw-r--r--cli/tests/testdata/bundle/fixture09.out19
1 files changed, 19 insertions, 0 deletions
diff --git a/cli/tests/testdata/bundle/fixture09.out b/cli/tests/testdata/bundle/fixture09.out
new file mode 100644
index 000000000..e06cc92de
--- /dev/null
+++ b/cli/tests/testdata/bundle/fixture09.out
@@ -0,0 +1,19 @@
+function a3(...d) {
+ return d.join(" ");
+}
+const mod = function() {
+ return {
+ a: a3
+ };
+}();
+function a1(...d) {
+ return d.join("/");
+}
+const mod1 = function() {
+ return {
+ a: a1
+ };
+}();
+const k = globalThis.value ? mod : mod1;
+const { a: a2 , } = k;
+export { a2 as a };