1 2 3 4 5
const bunFetch = Bun.fetch; const fetch = (...args) => bunFetch(...args); fetch.default = fetch; fetch.fetch = fetch; export default fetch;