This commit is contained in:
Felix Roos 2022-03-17 15:05:01 +01:00
parent 91c0a46ba9
commit 15e49952f9
12 changed files with 253 additions and 44 deletions

View file

@ -31,3 +31,4 @@ export const getPlayableNoteValue = (event) => {
}
return note;
};
export const rotate = (arr, n) => arr.slice(n).concat(arr.slice(0, n));