Merge branch 'main' into osc
This commit is contained in:
commit
9da114d965
20 changed files with 162 additions and 42 deletions
2
packages/core/package-lock.json
generated
2
packages/core/package-lock.json
generated
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@strudel.cycles/core",
|
||||
"version": "0.0.2",
|
||||
"version": "0.0.3",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@strudel.cycles/core",
|
||||
"version": "0.0.2",
|
||||
"version": "0.0.3",
|
||||
"description": "Port of Tidal Cycles to JavaScript",
|
||||
"main": "strudel.mjs",
|
||||
"type": "module",
|
||||
|
|
|
|||
|
|
@ -780,7 +780,7 @@ class Pattern {
|
|||
|
||||
// known as iter' in tidalcycles
|
||||
iterBack(times) {
|
||||
return this.iter(times, true)
|
||||
return this.iter(times, true);
|
||||
}
|
||||
|
||||
_chunk(n, func, back = false) {
|
||||
|
|
@ -791,7 +791,7 @@ class Pattern {
|
|||
}
|
||||
|
||||
_chunkBack(n, func) {
|
||||
return this._chunk(n, func, true)
|
||||
return this._chunk(n, func, true);
|
||||
}
|
||||
|
||||
edit(...funcs) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue