Primer Commit

This commit is contained in:
LuisAngelSalinasl
2025-08-04 18:51:41 -06:00
commit 8fcbb98114
8990 changed files with 1407288 additions and 0 deletions

19
assets/libs/gmaps/umd.hbs Normal file
View File

@@ -0,0 +1,19 @@
"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}};
}));