(existing: IEditCandidate, updated: IEditCandidate)
| 63 | } |
| 64 | |
| 65 | const updateEditCandidate = (existing: IEditCandidate, updated: IEditCandidate) => |
| 66 | existing.score > updated.score ? existing : updated; |
| 67 | |
| 68 | /** |
| 69 | * Finds configured npm scripts in the workspace. |