2019-06-30 13:58:50 +02:00

18 lines
342 B
JavaScript

(function (global, factory) {
if (typeof define === "function" && define.amd) {
define([], factory);
} else if (typeof exports !== "undefined") {
factory();
} else {
var mod = {
exports: {}
};
factory();
global.input = mod.exports;
}
})(this, function () {
"use strict";
import("foo"); // warns
});