(existing: IEditCandidate, updated: IEditCandidate)
| 84 | } |
| 85 | |
| 86 | const updateEditCandidate = (existing: IEditCandidate, updated: IEditCandidate) => |
| 87 | existing.score > updated.score ? existing : updated; |
| 88 | |
| 89 | /** |
| 90 | * Finds configured npm scripts in the workspace. |