From 94bcfb11deb30e15f8712c622bae983540ee6fad Mon Sep 17 00:00:00 2001 From: Raphael Forment Date: Tue, 29 Aug 2023 13:16:39 +0200 Subject: [PATCH] removing rogue console.log --- packages/superdough/synth.mjs | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/superdough/synth.mjs b/packages/superdough/synth.mjs index ee863192..4ef9ddb8 100644 --- a/packages/superdough/synth.mjs +++ b/packages/superdough/synth.mjs @@ -3,7 +3,6 @@ import { registerSound, getAudioContext } from './superdough.mjs'; import { getOscillator, gainNode, getEnvelope } from './helpers.mjs'; const mod = (freq, range = 1, type) => { - console.log(type) const ctx = getAudioContext(); const osc = ctx.createOscillator(); osc.type = type;