Files
bun.sh/src/node-fallbacks/http.js
dave caruso 5ae8e5d773 Make node-fallbacks build as esm not cjs / Fix node-fetch (#3377)
* Make node-fallbacks build as esm not cjs.

* fix stuff
2023-06-23 23:23:39 -07:00

14 lines
186 B
JavaScript

import http from "stream-http";
export default http;
export var {
//
request,
get,
ClientRequest,
IncomingMessage,
Agent,
globalAgent,
STATUS_CODES,
METHIDS,
} = http;