Files
xo_kf/public/assets/libs/art-template/src/outro.js
2025-04-26 11:07:05 +08:00

14 lines
281 B
JavaScript

// CommonJs
if (typeof exports === 'object' && typeof module !== 'undefined') {
module.exports = template;
// RequireJS && SeaJS
} else if (typeof define === 'function') {
define(function() {
return template;
});
} else {
this.template = template;
}
})();