Add test for exports destructuring.
This commit is contained in:
@@ -0,0 +1 @@
|
||||
export const { foo: bar, baz } = {};
|
||||
@@ -0,0 +1,8 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
const { foo: bar, baz } = {};
|
||||
exports.baz = baz;
|
||||
exports.bar = bar;
|
||||
Reference in New Issue
Block a user