From 9128411d3a0762c482819e56833e6c67b8bab746 Mon Sep 17 00:00:00 2001 From: Snowflake107 Date: Tue, 6 Apr 2021 21:38:07 +0545 Subject: [PATCH] format --- src/utils/AudioFilters.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/AudioFilters.ts b/src/utils/AudioFilters.ts index 9d5a624..153c13a 100644 --- a/src/utils/AudioFilters.ts +++ b/src/utils/AudioFilters.ts @@ -64,12 +64,12 @@ const FilterList = { * @param filterName The filter name * @param value FFmpeg args to use with -af * @example Player.AudioFilters.define("3D", "apulsator=hz=0.125") - * + * * player.setFilters(message, { "3D": true }) */ define(filterName: string, value: string) { /* @ts-ignore */ - if (typeof this[filterName] && typeof this[filterName] === "function") return; + if (typeof this[filterName] && typeof this[filterName] === 'function') return; /* @ts-ignore */ this[filterName] = value;