mirror of
https://github.com/oven-sh/bun
synced 2026-02-19 15:21:54 +00:00
19 lines
295 B
JavaScript
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;
|