qansigliere-axios-utils
Version:
This library is based on Javascript and it will contain some functions to make Rest API requests (GET / POST / PUT / PATCH / DELETE)
9 lines (7 loc) • 299 B
JavaScript
let { get, download, downloadV2, post, patch, extractResults } = require('./lib/lib.js');
module.exports.get = get;
module.exports.download = download;
module.exports.downloadV2 = downloadV2;
module.exports.post = post;
module.exports.patch = patch;
module.exports.extractResults = extractResults;