Add test for exports destructuring.
This commit is contained in:
parent
f81d7496b1
commit
9b410be61c
@ -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;
|
||||
Loading…
x
Reference in New Issue
Block a user