* Gets module chunks. * @param {Module} module the module * @returns {Chunk[]} array of chunks (cached, do not modify)
(module)
| 618 | * @returns {Chunk[]} array of chunks (cached, do not modify) |
| 619 | */ |
| 620 | getModuleChunks(module) { |
| 621 | const cgm = this._getChunkGraphModule(module); |
| 622 | return cgm.chunks.getFromCache(getArray); |
| 623 | } |
| 624 | |
| 625 | /** |
| 626 | * Gets number of module chunks. |
no test coverage detected