From 68d5ac2e34700df6d0599efc75c30f292972a57f Mon Sep 17 00:00:00 2001 From: Eric Rosenbaum Date: Fri, 21 Jul 2017 12:10:32 -0400 Subject: [PATCH] Lint --- src/effects/PanEffect.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/effects/PanEffect.js b/src/effects/PanEffect.js index 8c44a90..aeebb2c 100644 --- a/src/effects/PanEffect.js +++ b/src/effects/PanEffect.js @@ -33,7 +33,7 @@ class PanEffect { this.value = val; // Map the scratch effect value (-100 to 100) to (0 to 1) - const p = (val + 100) / 200; + const p = (val + 100) / 200; // Use trig functions for equal-loudness panning // See e.g. https://docs.cycling74.com/max7/tutorials/13_panningchapter01