Merge branch 'main' into osc

This commit is contained in:
Alex McLean 2022-04-11 21:10:37 +01:00 committed by GitHub
commit 9da114d965
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
20 changed files with 162 additions and 42 deletions

View file

@ -1,6 +1,6 @@
{
"name": "@strudel.cycles/core",
"version": "0.0.2",
"version": "0.0.3",
"lockfileVersion": 2,
"requires": true,
"packages": {

View file

@ -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",

View file

@ -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) {