fix palindrome
This commit is contained in:
parent
f1ac9c4443
commit
031b93f062
1 changed files with 5 additions and 1 deletions
|
|
@ -496,6 +496,10 @@ export class Pattern {
|
||||||
return this._squeezeBind(func);
|
return this._squeezeBind(func);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_striate(n) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
// cpm = cycles per minute
|
// cpm = cycles per minute
|
||||||
_cpm(cpm) {
|
_cpm(cpm) {
|
||||||
return this._fast(cpm / 60);
|
return this._fast(cpm / 60);
|
||||||
|
|
@ -616,7 +620,7 @@ export class Pattern {
|
||||||
}
|
}
|
||||||
|
|
||||||
palindrome() {
|
palindrome() {
|
||||||
this.every(2, rev);
|
return this.every(2, rev);
|
||||||
}
|
}
|
||||||
|
|
||||||
juxBy(by, func) {
|
juxBy(by, func) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue