22 lines
522 B
JavaScript
22 lines
522 B
JavaScript
"use strict";
|
|
|
|
var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } };
|
|
|
|
module.exports = foo;
|
|
module.exports = 42;
|
|
module.exports = {};
|
|
module.exports = [];
|
|
module.exports = foo;
|
|
module.exports = function () {};
|
|
|
|
var _default = function _default() {
|
|
_classCallCheck(this, _default);
|
|
};
|
|
|
|
module.exports = _default;
|
|
function foo() {}
|
|
var Foo = function Foo() {
|
|
_classCallCheck(this, Foo);
|
|
};
|
|
|
|
module.exports = Foo; |