(allowed: readonly string[])
| 340 | // the package ever passes it through we strip it here so the terminal never |
| 341 | // photobombs a screenshot. |
| 342 | const withoutTerminal = (allowed: readonly string[]): string[] => |
| 343 | terminalBundleId === null |
| 344 | ? [...allowed] |
| 345 | : allowed.filter(id => id !== terminalBundleId) |
| 346 | |
| 347 | logForDebugging( |
| 348 | terminalBundleId |
no outgoing calls
no test coverage detected