Files
bun.sh/src/node-fallbacks/http.js
2024-10-19 00:23:57 -07:00

19 lines
295 B
JavaScript

/**
* Browser polyfill for the `"http"` module.
*
* Imported on usage in `bun build --target=browser`
*/
import http from "stream-http";
export default http;
export var {
//
request,
get,
ClientRequest,
IncomingMessage,
Agent,
globalAgent,
STATUS_CODES,
METHODS,
} = http;