@lodgify/fetch-helpers
v1.2.2
Published
Simple helpers for the fetch api.
Downloads
57
Readme
Fetch helpers
Simple helpers for fetch.
Install
$ npm install @lodgify/fetch-helpers
Usage
import { postJSON } from '@lodgify/fetch-helpers';
const url = "www.lassie.com";
const body = {
toy: "stick",
};
const customHeaders = {
redirect: "follow",
};
postJSON(url, body, customHeaders);
Contributing
See contributing.