UNPKG

validate-note

Version:

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

9 lines (6 loc) • 213 B
import notes from '../data/notes'; export default (function (letter, signature) { signature = '#'; letter = notes[notes.indexOf(letter) - 1].charAt(0); return { signature: signature, letter: letter }; });