diff options
Diffstat (limited to 'cli/js/deno.ts')
-rw-r--r-- | cli/js/deno.ts | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/cli/js/deno.ts b/cli/js/deno.ts index cac730249..2a7274727 100644 --- a/cli/js/deno.ts +++ b/cli/js/deno.ts @@ -112,9 +112,3 @@ export let pid: number; /** Reflects the NO_COLOR environment variable: https://no-color.org/ */ export let noColor: boolean; - -// TODO(ry) This should not be exposed to Deno. -export function _setGlobals(pid_: number, noColor_: boolean): void { - pid = pid_; - noColor = noColor_; -} |