UNPKG

abcjs

Version:

Renderer for abc music notation

11 lines (9 loc) 289 B
function Separator(spaceAbove, lineLength, spaceBelow) { this.rows = []; if (spaceAbove) this.rows.push({ move: spaceAbove }); this.rows.push({ separator: lineLength, absElemType: "separator" }); if (spaceBelow) this.rows.push({ move: spaceBelow }); } module.exports = Separator;