Outlook_Addin_LLM/node_modules/http2-client/lib/http.js

17 lines
376 B
JavaScript
Raw Permalink Normal View History

const {
HttpRequest,ClientRequest
} = require('./request');
const globalManager = HttpRequest.globalManager;
const request = globalManager.request.bind(globalManager);
const get = globalManager.get.bind(globalManager);
const http = Object.assign({},require('http'));
module.exports = Object.assign(http , {
ClientRequest,
globalManager,
request,
get
})