(command: Command)
| 500 | } |
| 501 | |
| 502 | function isInternalWorkerCommand(command: Command): boolean { |
| 503 | return command.name() === '_run-job'; |
| 504 | } |
| 505 | |
| 506 | function shouldSkipCommandChrome(command: Command): boolean { |
| 507 | if (isInternalWorkerCommand(command)) return true; |
no outgoing calls
no test coverage detected