@segment/analytics-react-native
Version:
The hassle-free way to add Segment analytics to your React-Native app.
18 lines • 359 B
JavaScript
export const uploadEvents = async ({
writeKey,
url,
events
}) => {
return await fetch(url, {
method: 'POST',
body: JSON.stringify({
batch: events,
sentAt: new Date().toISOString(),
writeKey: writeKey
}),
headers: {
'Content-Type': 'application/json; charset=utf-8'
}
});
};
//# sourceMappingURL=api.js.map