(anchor: any)
| 126 | }; |
| 127 | |
| 128 | const isCoordinate = (anchor: any): anchor is { x: number; y: number } => |
| 129 | !React.isValidElement(anchor) && |
| 130 | typeof anchor?.x === 'number' && |
| 131 | typeof anchor?.y === 'number'; |
| 132 | |
| 133 | const isBrowser = () => Platform.OS === 'web' && 'document' in global; |
| 134 |
no outgoing calls
no test coverage detected
searching dependent graphs…