(messageText: string)
| 95 | * @returns true if the message is a permission response |
| 96 | */ |
| 97 | export function isPermissionRelatedResponse(messageText: string): boolean { |
| 98 | return ( |
| 99 | !!isPermissionResponse(messageText) || |
| 100 | !!isSandboxPermissionResponse(messageText) |
| 101 | ) |
| 102 | } |
| 103 |
nothing calls this directly
no test coverage detected