summaryrefslogtreecommitdiff
path: root/js/core.ts
blob: d394d822fda135c3849c92d72dff5087ad2e4301 (plain)
1
2
3
4
5
6
// Copyright 2018-2019 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;