* Returns hash. * @param {Module} module the module * @param {RuntimeSpec} runtime the runtime * @returns {string} hash
(module, runtime)
| 1621 | * @returns {string} hash |
| 1622 | */ |
| 1623 | getModuleHash(module, runtime) { |
| 1624 | const cgm = this._getChunkGraphModule(module); |
| 1625 | const hashes = /** @type {RuntimeSpecMap<ModuleHashInfo>} */ (cgm.hashes); |
| 1626 | return this._getModuleHashInfo(module, hashes, runtime).hash; |
| 1627 | } |
| 1628 | |
| 1629 | /** |
| 1630 | * Gets rendered module hash. |
no test coverage detected