(a, b)
| 53 | const isDeprioritizedProcess = process_ => deprioritizedProcesses.has(process_.name); |
| 54 | const preferNotDeprioritized = preferNotMatching(isDeprioritizedProcess); |
| 55 | const preferLowAlphanumericNames = (a, b) => a.name.localeCompare(b.name); |
| 56 | |
| 57 | const preferHighPerformanceImpact = (a, b) => { |
| 58 | const hasCpu = typeof a.cpu === 'number' && typeof b.cpu === 'number'; |
no outgoing calls
no test coverage detected