remove edit and pipe function (duplicate of layer and apply)

This commit is contained in:
Lars Kobbe 2022-07-25 22:20:06 +02:00
parent bebfa23cc9
commit 82728be44b
3 changed files with 8 additions and 15 deletions

View file

@ -1014,13 +1014,6 @@ export class Pattern {
return this._chunk(n, func, true);
}
edit(...funcs) {
return stack(...funcs.map((func) => func(this)));
}
pipe(func) {
return func(this);
}
_bypass(on) {
on = Boolean(parseInt(on));
return on ? silence : this;