(value: string)
| 10 | } |
| 11 | |
| 12 | export function parseSerialAllowlist(value: string): Set<string> { |
| 13 | return new Set( |
| 14 | value |
| 15 | .split(/[\s,]+/) |
| 16 | .map((entry) => entry.trim()) |
| 17 | .filter(Boolean), |
| 18 | ); |
| 19 | } |
| 20 | |
| 21 | export function resolveAndroidSerialAllowlist( |
| 22 | flagValue: string | undefined, |
no outgoing calls
no test coverage detected
searching dependent graphs…