(chord: Chord)
| 141 | * Convert a Chord to its canonical string representation for display. |
| 142 | */ |
| 143 | export function chordToString(chord: Chord): string { |
| 144 | return chord.map(keystrokeToString).join(' ') |
| 145 | } |
| 146 | |
| 147 | /** |
| 148 | * Display platform type - a subset of Platform that we care about for display. |
no outgoing calls
no test coverage detected