UNPKG

web-collect-events-narayana

Version:

An sdk for collecting events from web pages

14 lines (13 loc) 336 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.postData = void 0; function postData(url, data) { return fetch(url, { method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify(data), }); } exports.postData = postData;