diff --git a/front/src/audio/volume.js b/front/src/audio/volume.js
index 5a9ad05f6ea449fc9b53b49faa27f56219767697..05c74e670a123cc003f81ce7affcdb851488d51d 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