faucet-pipeline-js
Version:
JavaScript module bundling for faucet-pipeline
17 lines (13 loc) • 355 B
JavaScript
/* eslint-disable */
(function(window) {
var MYLIB = "MY-LIB";
if(typeof module !== "undefined" && typeof module.exports !== "undefined") {
module.exports = MYLIB;
} else if(typeof define === "function" && define.amd) {
define("my-lib", [], function() {
return MYLIB;
});
} else if(typeof window === "object") {
window.MYLIB = MYLIB;
}
}(this));