(enabledWorkflows: string[])
| 615 | } |
| 616 | |
| 617 | function requiresDeviceDefault(enabledWorkflows: string[]): boolean { |
| 618 | return enabledWorkflows.some((workflowId) => DEVICE_DEFAULT_WORKFLOWS.has(workflowId)); |
| 619 | } |
| 620 | |
| 621 | function getDevicePlatformLabel(platformIdentifier?: string): string { |
| 622 | const platformId = platformIdentifier?.toLowerCase() ?? ''; |
no outgoing calls
no test coverage detected