( shortName, module, context, hashFunction, associatedObjectForCache )
| 107 | * @returns {string} long module name |
| 108 | */ |
| 109 | const getLongModuleName = ( |
| 110 | shortName, |
| 111 | module, |
| 112 | context, |
| 113 | hashFunction, |
| 114 | associatedObjectForCache |
| 115 | ) => { |
| 116 | const fullName = getFullModuleName(module, context, associatedObjectForCache); |
| 117 | return `${shortName}?${getHash(fullName, 4, hashFunction)}`; |
| 118 | }; |
| 119 | |
| 120 | /** |
| 121 | * Gets full module name. |
no test coverage detected