function post()

in src/ui/src/services/RetailEdge.js [36:43]


function post(path, headers, body) {
  const promise = fetch(path, {
    method: 'POST',
    body: JSON.stringify(body),
    headers,
  });
  return promise.then((response) => response);
}