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

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