* Attempts to search for a module by its identifier * @param {string} identifier identifier (usually path) for module * @returns {Module | undefined} attempt to search for module and return it, else undefined
(identifier)
| 1671 | * @returns {Module | undefined} attempt to search for module and return it, else undefined |
| 1672 | */ |
| 1673 | findModule(identifier) { |
| 1674 | return this._modules.get(identifier); |
| 1675 | } |
| 1676 | |
| 1677 | /** |
| 1678 | * Schedules a build of the module object |
no test coverage detected