UNPKG

vexflow-musicxml

Version:

MusicXml Parser for vexflow

15 lines (14 loc) 255 B
export class Utils { static getNotesByBackup(notes) { const bList = []; let nList = []; notes.forEach((n) => { nList.push(n); if (n.isLast) { bList.push(nList); nList = []; } }); return bList; } }