(value = "")
| 24 | const isTermuxSafUri = (value = "") => |
| 25 | value.startsWith("content://com.termux.documents/tree/"); |
| 26 | const isAcodeTerminalPublicSafUri = (value = "") => |
| 27 | value.startsWith("content://com.foxdebug.acode.documents/tree/"); |
| 28 | const isTerminalSafUri = (value = "") => |
| 29 | isTermuxSafUri(value) || isAcodeTerminalPublicSafUri(value); |
| 30 |
no outgoing calls
no test coverage detected