Skip to content

New methods to parse tab, tuning and chord name

Pre-release
Pre-release
Compare
Choose a tag to compare
@greird greird released this 28 Aug 12:48
25d5c7c

This release adds the following features:

  • New parseTuning method to break a string into notes (e.g. EADGBE becomes ["E", "A", "D", "G", "B", "E"]
  • New parseTab method to break a string into frets (e.g. X32010 becomes ["x", 3, 2, 0, 1, 0]
  • New parseChord method to break a string into a chord root and quality (e.g. Csus4 becomes ["C", "sus4"]
  • New notes constant containing the list of all 12 notes.
  • New tuning constant containing a list of common tunings.

Check the new Documentation to learn more about those new features.