( location: JSONObject | null | undefined, key: string, )
| 2364 | } |
| 2365 | |
| 2366 | function sourceNumber( |
| 2367 | location: JSONObject | null | undefined, |
| 2368 | key: string, |
| 2369 | ): number | null { |
| 2370 | const value = location?.[key]; |
| 2371 | return typeof value === "number" && Number.isFinite(value) ? value : null; |
| 2372 | } |
| 2373 | |
| 2374 | function tap(target: any): void { |
| 2375 | if (isKindOf(target, "UISwitch")) { |
no outgoing calls
no test coverage detected