UNPKG
vexflow-musicxml
Version:
latest (0.3.1)
0.3.1
0.3.0
0.2.3
0.2.2
0.2.1
0.2.0
MusicXml Parser for vexflow
vexflow-musicxml
/
src
/
xml
/
Utils.js
15 lines
(14 loc)
•
255 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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; } }