summaryrefslogtreecommitdiff
path: root/runtime/js/40_http.js
diff options
context:
space:
mode:
authorMatt Mastracci <matthew@mastracci.com>2024-04-18 11:21:25 -0600
committerGitHub <noreply@github.com>2024-04-18 11:21:25 -0600
commitd9d3f81f291bbba4ab526f1781ca78e8a00cba64 (patch)
treed3b09207a9ea1108a0eadd998b46f0d39dada83b /runtime/js/40_http.js
parent6a09a16d710b2d7a9d39478e5bcbabb40919d657 (diff)
chore: remove unused, unstable 'http' namespace (#23436)
Landing parts of #21903 in preparation for the removal of serveHttp.
Diffstat (limited to 'runtime/js/40_http.js')
-rw-r--r--runtime/js/40_http.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/runtime/js/40_http.js b/runtime/js/40_http.js
deleted file mode 100644
index 675d428cd..000000000
--- a/runtime/js/40_http.js
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
-import { core, internals } from "ext:core/mod.js";
-import { op_http_start } from "ext:core/ops";
-const { internalRidSymbol } = core;
-
-import { HttpConn } from "ext:deno_http/01_http.js";
-
-function serveHttp(conn) {
- internals.warnOnDeprecatedApi(
- "Deno.serveHttp()",
- new Error().stack,
- "Use `Deno.serve()` instead.",
- );
- const rid = op_http_start(conn[internalRidSymbol]);
- return new HttpConn(rid, conn.remoteAddr, conn.localAddr);
-}
-
-export { serveHttp };