* Gets number of chunk full hash modules. * @param {Chunk} chunk the chunk * @returns {number} the number of full hash modules which are contained in this chunk
(chunk)
| 658 | * @returns {number} the number of full hash modules which are contained in this chunk |
| 659 | */ |
| 660 | getNumberOfChunkFullHashModules(chunk) { |
| 661 | const cgc = this._getChunkGraphChunk(chunk); |
| 662 | return cgc.fullHashModules === undefined ? 0 : cgc.fullHashModules.size; |
| 663 | } |
| 664 | |
| 665 | /** |
| 666 | * Gets chunk modules iterable. |
no test coverage detected