* Checks whether this module graph is async. * @param {Module} module the module * @returns {boolean} true, if the module is async
(module)
| 900 | * @returns {boolean} true, if the module is async |
| 901 | */ |
| 902 | isAsync(module) { |
| 903 | const mgm = this._getModuleGraphModule(module); |
| 904 | return mgm.async; |
| 905 | } |
| 906 | |
| 907 | /** |
| 908 | * Checks whether this module graph is deferred. |
no test coverage detected