UNPKG

@segment/analytics-next

Version:

Analytics Next (aka Analytics 2.0) is the latest version of Segment’s JavaScript SDK - enabling you to send your data to any tool without having to learn, test, or use a new API every time.

9 lines (7 loc) 277 B
export type FetchCall = [input: RequestInfo, init?: RequestInit | undefined] export const parseFetchCall = ([url, request]: FetchCall) => ({ url, method: request?.method, headers: request?.headers, body: request?.body ? JSON.parse(request.body as any) : undefined, })