(name: string)
| 4486 | .map((ev) => { |
| 4487 | const tags = (ev.tags ?? []) as string[][]; |
| 4488 | const getTag = (name: string) => |
| 4489 | tags.find((t) => t[0] === name)?.[1] ?? null; |
| 4490 | const channelId = getTag("d") ?? ""; |
| 4491 | const channelType = getTag("t") ?? "stream"; |
| 4492 | const isPrivate = tags.some((t) => t[0] === "private"); |
no outgoing calls
no test coverage detected