From 873e4980317fd7ff66e829e4b4c62d647250d2c7 Mon Sep 17 00:00:00 2001 From: Kasper Seweryn Date: Mon, 21 Feb 2022 23:21:39 +0100 Subject: [PATCH] Remove undeclared `exports` from volume.js --- front/src/audio/volume.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/front/src/audio/volume.js b/front/src/audio/volume.js index 5a9ad05f6..05c74e670 100644 --- a/front/src/audio/volume.js +++ b/front/src/audio/volume.js @@ -21,6 +21,3 @@ export function toLogarithmicVolumeScale (v) { // (0; -DYNAMIC_RANGE) [dB] -> (1.0; 0.0) return 1 - (dB / -DYNAMIC_RANGE) } - -exports.toLinearVolumeScale = toLinearVolumeScale -exports.toLogarithmicVolumeScale = toLogarithmicVolumeScale