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