chore: prettier

This commit is contained in:
Snowflake107 2021-04-30 21:43:52 +05:45
parent 6548c966f2
commit 81843d42df

View file

@ -70,11 +70,15 @@ const FilterList = {
}, },
get names() { 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() { 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() { toString() {