summaryrefslogtreecommitdiff
path: root/cli/js/ops/os.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/js/ops/os.ts')
-rw-r--r--cli/js/ops/os.ts45
1 files changed, 0 insertions, 45 deletions
diff --git a/cli/js/ops/os.ts b/cli/js/ops/os.ts
deleted file mode 100644
index 50234ee4b..000000000
--- a/cli/js/ops/os.ts
+++ /dev/null
@@ -1,45 +0,0 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
-
-import { sendSync } from "./dispatch_json.ts";
-
-export function loadavg(): number[] {
- return sendSync("op_loadavg");
-}
-
-export function hostname(): string {
- return sendSync("op_hostname");
-}
-
-export function osRelease(): string {
- return sendSync("op_os_release");
-}
-
-export function exit(code = 0): never {
- sendSync("op_exit", { code });
- throw new Error("Code not reachable");
-}
-
-function setEnv(key: string, value: string): void {
- sendSync("op_set_env", { key, value });
-}
-
-function getEnv(key: string): string | undefined {
- return sendSync("op_get_env", { key })[0];
-}
-
-function deleteEnv(key: string): void {
- sendSync("op_delete_env", { key });
-}
-
-export const env = {
- get: getEnv,
- toObject(): Record<string, string> {
- return sendSync("op_env");
- },
- set: setEnv,
- delete: deleteEnv,
-};
-
-export function execPath(): string {
- return sendSync("op_exec_path");
-}