* @returns {Promise }
()
| 148 | * @returns {Promise<void>} |
| 149 | */ |
| 150 | async function afterLoad () { |
| 151 | const moduleObject = Module.create(module.name); |
| 152 | if (moduleObject) { |
| 153 | await bootstrapModule(module, moduleObject); |
| 154 | } |
| 155 | } |
| 156 | |
| 157 | if (loadedModuleFiles.indexOf(url) !== -1) { |
| 158 | await afterLoad(); |
no test coverage detected