mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 04:01:39 +03:00
11 lines
276 B
JavaScript
11 lines
276 B
JavaScript
export default {
|
|
uhoh: "another default"
|
|
};
|
|
var C = function() {
|
|
"use strict";
|
|
!function(instance, Constructor) {
|
|
if (!(instance instanceof Constructor)) throw new TypeError("Cannot call a class as a function");
|
|
}(this, C);
|
|
};
|
|
export { C as default };
|