Convert UMD to use new implementation of module logic.

This commit is contained in:
Logan Smyth
2017-09-11 15:01:17 -07:00
parent 47a254025a
commit 95e08b6d2a
60 changed files with 1511 additions and 283 deletions

View File

@@ -10,18 +10,21 @@
factory(mod.exports);
global.actual = mod.exports;
}
})(this, function (exports) {
})(this, function (_exports) {
"use strict";
Object.defineProperty(exports, "__esModule", {
Object.defineProperty(_exports, "__esModule", {
value: true
});
_exports.default = void 0;
exports.default = function (_a) {
var _default = function _default(_a) {
return {
a: function a() {
return _a;
}
};
};
_exports.default = _default;
});