UNPKG

validate-chord

Version:

🎼 Validates a chord (scientific pitch notation) and throws errors if needed

5 lines (4 loc) • 114 B
export default chord => { if (!isNaN(chord.charAt(1))) return chord.slice(0, 2); return chord.slice(0, 3); };