UNPKG

rxdb-server

Version:
14 lines 397 B
export async function postRequest(url, body, headers = {}) { var request = await fetch(url, { method: 'POST', credentials: 'include', headers: Object.assign({ 'Accept': 'application/json', 'Content-Type': 'application/json' }, headers), body: JSON.stringify(body) }); var response = await request.json(); return response; } //# sourceMappingURL=utils.js.map