* Returns the depth of the module. * @param {Module} module the module * @returns {number | null} the depth of the module
(module)
| 864 | * @returns {number | null} the depth of the module |
| 865 | */ |
| 866 | getDepth(module) { |
| 867 | const mgm = this._getModuleGraphModule(module); |
| 868 | return mgm.depth; |
| 869 | } |
| 870 | |
| 871 | /** |
| 872 | * Updates depth using the provided module. |
no test coverage detected