UNPKG

validate-chord

Version:

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

4 lines • 123 B
export default (function (chord) { if (!isNaN(chord.charAt(1))) return chord.slice(0, 2); return chord.slice(0, 3); });