(v: unknown)
| 150 | } |
| 151 | |
| 152 | function str(v: unknown): string | undefined { |
| 153 | return typeof v === 'string' && v.length > 0 ? v : undefined; |
| 154 | } |
| 155 | |
| 156 | function num(v: unknown): number | undefined { |
| 157 | return typeof v === 'number' && Number.isFinite(v) ? v : undefined; |
no outgoing calls
no test coverage detected