chore: prettier
This commit is contained in:
parent
6548c966f2
commit
81843d42df
1 changed files with 6 additions and 2 deletions
|
@ -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() {
|
||||||
|
|
Loading…
Reference in a new issue