UNPKG

unenv

Version:

`unenv` is a framework-agnostic system that allows converting JavaScript code to be platform agnostic and work in any environment including Browsers, Workers, Node.js, or JavaScript runtime.

16 lines (15 loc) 489 B
import { notImplemented, notImplementedClass } from "../../_internal/utils.mjs"; export const Server = notImplementedClass("https.Server"); export const Agent = notImplementedClass("https.Agent"); export const globalAgent = void 0; export const get = notImplemented("https.get"); export const createServer = notImplemented("https.createServer"); export const request = notImplemented("https.request"); export default { Server, Agent, globalAgent, get, createServer, request };