mirror of
https://github.com/nbd-wtf/nostr-tools.git
synced 2026-02-04 07:44:32 +00:00
7 lines
210 B
TypeScript
7 lines
210 B
TypeScript
import { verifiedSymbol, type Event, type Nostr, VerifiedEvent } from './core.ts'
|
|
|
|
export const alwaysTrue: Nostr['verifyEvent'] = (t: Event): t is VerifiedEvent => {
|
|
t[verifiedSymbol] = true
|
|
return true
|
|
}
|