summaryrefslogtreecommitdiff
path: root/cli/js/core.ts
blob: 5a60b6f860712e46cb8137159fee829c7df54b6e (plain)
1
2
3
4
5
6
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { window } from "./window.ts";

// This allows us to access core in API even if we
// dispose window.Deno
export const core = window.Deno.core as DenoCore;