14 lines
376 B
JavaScript
14 lines
376 B
JavaScript
const nodeFetch = require("node-fetch");
|
|
const { USER_AGENT } = require("../config/appConfig");
|
|
|
|
const fetch = async (url, options = {}) => {
|
|
const newOptions = Object.assign({}, options);
|
|
if (!newOptions["headers"]) {
|
|
newOptions["headers"] = {};
|
|
}
|
|
newOptions["headers"]["User-Agent"] = USER_AGENT;
|
|
return nodeFetch(url, newOptions);
|
|
};
|
|
|
|
module.exports = fetch;
|