Merge branch 'main' into base-function

This commit is contained in:
Alex McLean 2026-06-21 14:34:18 +02:00
commit 2b2646a768
4 changed files with 134 additions and 1 deletions

View file

@ -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*
*