From ee3a12d8e0b1ec0e1b9c543903ba19fc57149059 Mon Sep 17 00:00:00 2001 From: Miika Alonen Date: Mon, 21 Aug 2023 19:45:59 +0300 Subject: [PATCH] Merge --- src/Note.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/Note.ts b/src/Note.ts index 65e8bc0..b087a66 100644 --- a/src/Note.ts +++ b/src/Note.ts @@ -38,10 +38,8 @@ export class Note extends Event { } modify = (func: Function): this => { - if(typeof func === 'function') { const funcResult = func(this); if(funcResult instanceof Object) { - console.log("IS OBJECT?"); return funcResult; } @@ -50,7 +48,6 @@ export class Note extends Event { return this; } } - } // TODO: Add bend freq = (value: number): this => {