aboutsummaryrefslogtreecommitdiff
path: root/packages/bun-framework-next/server-polyfills.tsx
blob: 59c38e92c38ff1dd4752dd895cbd883d4b05e4ff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
globalThis.global = globalThis;

import { Buffer } from "buffer";
import { URL } from "./url-polyfill";
import * as React from "react";

const onlyChildPolyfill = React.Children.only;

globalThis.Buffer ||= Buffer;
globalThis.URL = URL;