mirror of
https://github.com/smallmain/cocos-enhance-kit.git
synced 2025-01-14 06:51:08 +00:00
11 lines
224 B
JavaScript
11 lines
224 B
JavaScript
let moduleMap = {
|
|
// tail
|
|
};
|
|
|
|
window.__cocos_require__ = function (moduleName) {
|
|
let func = moduleMap[moduleName];
|
|
if (!func) {
|
|
throw new Error(`cannot find module ${moduleName}`);
|
|
}
|
|
return func();
|
|
}; |