(rect: SnapshotNode['rect'])
| 316 | } |
| 317 | |
| 318 | function isUsableRect(rect: SnapshotNode['rect']): rect is NonNullable<SnapshotNode['rect']> { |
| 319 | return Boolean(rect && rect.width > 0 && rect.height > 0); |
| 320 | } |
| 321 | |
| 322 | function roundSignatureNumber(value: unknown): string { |
| 323 | return typeof value === 'number' && Number.isFinite(value) |
no outgoing calls
no test coverage detected
searching dependent graphs…