(editorSources: Record<string, any>[])
| 55 | } |
| 56 | |
| 57 | function getArrayWithJustTheCode(editorSources: Record<string, any>[]): string[] { |
| 58 | return editorSources.map(s => s.source); |
| 59 | } |
| 60 | |
| 61 | function getSimilarSourcesIndex(completeHistory: HistoryEntry[], sourcesToCompareTo: any[]): number { |
| 62 | let duplicateIdx = -1; |
no outgoing calls
no test coverage detected