remove duplicate range

This commit is contained in:
Felix Roos 2022-04-25 22:47:30 +02:00
parent 0c5903d822
commit d3a04071eb

View File

@ -746,10 +746,6 @@ export class Pattern {
_velocity(velocity) {
return this._withContext((context) => ({ ...context, velocity: (context.velocity || 1) * velocity }));
}
range(min, max) {
return this.mul(max - min).add(min)
}
}
// pattern composers