We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8122612 commit ee54496Copy full SHA for ee54496
web/src/utils/tcp-flags.ts
@@ -16,6 +16,6 @@ export const tcpFlagsList = [
16
{ name: 'RST_ACK', description: 'Acknowledgement of RST (custom flag)' }
17
] as const;
18
19
-export const getFlagsList = (names: string[]): { name: string, description: string}[] => {
+export const getFlagsList = (names: string[]): { name: string; description: string }[] => {
20
return tcpFlagsList.filter(f => names.includes(f.name));
21
};
0 commit comments