UNPKG

@typedin/music-utilities

Version:

A set of resources and modules I use to develop music applications.

7 lines 180 B
export function transpose(scale, nbOctave) { return scale.map((note) => ({ ...note, octave: note.octave + nbOctave, })); } //# sourceMappingURL=index.js.map