(input: string)
| 217 | } |
| 218 | |
| 219 | export function escapeDartString(input: string) { |
| 220 | return input.replace(/(['"\\])/g, "\\$1"); |
| 221 | } |
| 222 | |
| 223 | export function isWebDevice(deviceId: string | undefined): boolean { |
| 224 | return !!(deviceId?.startsWith("web") || deviceId === "chrome" || deviceId === "edge"); |
no outgoing calls
no test coverage detected