(rawText, hostContext)
| 300 | } |
| 301 | |
| 302 | function computeText(rawText, hostContext) { |
| 303 | return hostContext === UPPERCASE_CONTEXT ? rawText.toUpperCase() : rawText; |
| 304 | } |
| 305 | |
| 306 | type SuspenseyThingRecord = { |
| 307 | status: 'pending' | 'fulfilled', |
no outgoing calls
no test coverage detected