* Gets number of module chunks. * @param {Module} module the module * @returns {number} the number of chunk which contain the module
(module)
| 628 | * @returns {number} the number of chunk which contain the module |
| 629 | */ |
| 630 | getNumberOfModuleChunks(module) { |
| 631 | const cgm = this._getChunkGraphModule(module); |
| 632 | return cgm.chunks.size; |
| 633 | } |
| 634 | |
| 635 | /** |
| 636 | * Gets module runtimes. |
no test coverage detected