diff --git a/src/utils/AudioFilters.ts b/src/utils/AudioFilters.ts index ff21b68..52b600a 100644 --- a/src/utils/AudioFilters.ts +++ b/src/utils/AudioFilters.ts @@ -70,11 +70,15 @@ const FilterList = { }, get names() { - return Object.keys(this).filter((p) => !['names', 'length'].includes(p) && typeof this[p as FiltersName] !== 'function'); + return Object.keys(this).filter( + (p) => !['names', 'length'].includes(p) && typeof this[p as FiltersName] !== 'function' + ); }, get length() { - return Object.keys(this).filter((p) => !['names', 'length'].includes(p) && typeof this[p as FiltersName] !== 'function').length; + return Object.keys(this).filter( + (p) => !['names', 'length'].includes(p) && typeof this[p as FiltersName] !== 'function' + ).length; }, toString() {