mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 12:41:54 +03:00
16 lines
354 B
JavaScript
16 lines
354 B
JavaScript
export { x };
|
|
export { x as xx };
|
|
export default x;
|
|
var x = "x";
|
|
export { Y as Z };
|
|
var Y = function Y() {
|
|
"use strict";
|
|
!function(instance, Constructor) {
|
|
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
}(this, Y);
|
|
};
|
|
export { y };
|
|
export { y as yy };
|
|
export default y;
|
|
var y = "y";
|