MCPcopy Create free account
hub / github.com/cameri/nostream / isParameterizedReplaceableEvent

Function isParameterizedReplaceableEvent

src/utils/event.ts:199–203  ·  view source on GitHub ↗
(event: Event)

Source from the content-addressed store, hash-verified

197}
198
199export const isParameterizedReplaceableEvent = (event: Event): boolean => {
200 return (
201 event.kind >= EventKinds.PARAMETERIZED_REPLACEABLE_FIRST && event.kind <= EventKinds.PARAMETERIZED_REPLACEABLE_LAST
202 )
203}
204
205export const isDeleteEvent = (event: Event): boolean => {
206 return event.kind === EventKinds.DELETE

Callers 4

event.spec.tsFile · 0.90
eventStrategyFactoryFunction · 0.90
enrichEventMetadataFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected