root 2bb01ae691
All checks were successful
continuous-integration/drone/push Build is passing
🔁 Sync from production: settings and Docker updates
2025-05-15 06:30:43 +00:00

20 lines
444 B
Handlebars

"use strict";
(function(root, factory) {
if(typeof exports === 'object') {
module.exports = factory({{{cjsDependencies}}});
}
else if(typeof define === 'function' && define.amd) {
define({{#if amdModuleId}}'{{amdModuleId}}', {{/if}}[{{{amdDependencies}}}], factory);
}
else {
root.{{globalAlias}} = factory({{{globalDependencies}}});
}
}(this, function({{dependencies}}) {
{{{code}}}
return {{objectToExport}};
}));