add growlist
This commit is contained in:
parent
95a9d301a1
commit
62d4f84e69
1 changed files with 8 additions and 3 deletions
|
|
@ -3359,6 +3359,11 @@ Pattern.prototype.shrinklist = function (amount) {
|
|||
|
||||
export const shrinklist = (amount, pat) => pat.shrinklist(amount);
|
||||
|
||||
Pattern.prototype.growlist = function (amount) {
|
||||
return this.shrinklist(amount).reverse();
|
||||
}
|
||||
export const growlist = (amount, pat) => pat.growlist(amount);
|
||||
|
||||
/**
|
||||
* *Experimental*
|
||||
*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue