Skip to content

Commit

Permalink
feat: add tuicFilter
Browse files Browse the repository at this point in the history
  • Loading branch information
fredliang44 committed Jan 12, 2023
1 parent 5d5e67b commit 1dbac5f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/utils/filter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,9 @@ export const v2rayFilter: NodeNameFilterType = (item) =>
export const snellFilter: NodeNameFilterType = (item) =>
item.type === NodeTypeEnum.Snell;
// istanbul ignore next
export const tuicFilter: NodeNameFilterType = (item) =>
item.type === NodeTypeEnum.Tuic;
// istanbul ignore next
export const httpFilter: NodeNameFilterType = (item) =>
item.type === NodeTypeEnum.HTTP;
// istanbul ignore next
Expand Down

0 comments on commit 1dbac5f

Please sign in to comment.