Modify extend to better match behavior of ! operator
This commit is contained in:
parent
caf6686d01
commit
f5ae50c3ce
1 changed files with 1 additions and 1 deletions
|
|
@ -2928,7 +2928,7 @@ export const drop = stepRegister('drop', function (i, pat) {
|
||||||
* ).pace(8)
|
* ).pace(8)
|
||||||
*/
|
*/
|
||||||
export const extend = stepRegister('extend', function (factor, pat) {
|
export const extend = stepRegister('extend', function (factor, pat) {
|
||||||
return pat.fast(factor).expand(factor);
|
return pat.repeatCycles(factor).fast(factor).expand(factor);
|
||||||
});
|
});
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue