( location: JSONObject | null | undefined, key: string, )
| 2356 | } |
| 2357 | |
| 2358 | function sourceString( |
| 2359 | location: JSONObject | null | undefined, |
| 2360 | key: string, |
| 2361 | ): string | null { |
| 2362 | const value = location?.[key]; |
| 2363 | return typeof value === "string" && value ? value : null; |
| 2364 | } |
| 2365 | |
| 2366 | function sourceNumber( |
| 2367 | location: JSONObject | null | undefined, |
no outgoing calls
no test coverage detected