UNPKG

posthog-node

Version:

PostHog Node.js integration

8 lines (7 loc) 279 B
const AI_EVENT_PREFIX = '$ai_'; const ANALYTICS_ROUTE = 'analytics'; const AI_ROUTE = 'ai'; function isLegacyOnlyEvent(message) { return 'string' == typeof message.event && message.event.startsWith(AI_EVENT_PREFIX); } export { AI_ROUTE, ANALYTICS_ROUTE, isLegacyOnlyEvent };