* fix: sort export init statements by name * update test fixtures * refactor: reduce memory footprint * review comments
22 lines
575 B
JavaScript
22 lines
575 B
JavaScript
(function (global, factory) {
|
|
if (typeof define === "function" && define.amd) {
|
|
define(["exports"], factory);
|
|
} else if (typeof exports !== "undefined") {
|
|
factory(exports);
|
|
} else {
|
|
var mod = {
|
|
exports: {}
|
|
};
|
|
factory(mod.exports);
|
|
global.input = mod.exports;
|
|
}
|
|
})(typeof globalThis !== "undefined" ? globalThis : typeof self !== "undefined" ? self : this, function (_exports) {
|
|
"use strict";
|
|
|
|
_exports.__esModule = true;
|
|
_exports.default = _exports.bar = void 0;
|
|
var foo, bar;
|
|
_exports.bar = bar;
|
|
_exports.default = foo;
|
|
});
|