* @param {Record |null} awContext * @param {string} key * @returns {string}
(awContext, key)
| 170 | * @returns {string} |
| 171 | */ |
| 172 | function readAwContextString(awContext, key) { |
| 173 | if (!awContext || typeof awContext[key] !== "string") { |
| 174 | return ""; |
| 175 | } |
| 176 | return awContext[key].trim(); |
| 177 | } |
| 178 | |
| 179 | /** |
| 180 | * @param {ReusableStatusComment} reusableComment |
no outgoing calls
no test coverage detected