mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
362be01abe
Co-authored-by: Ben Noordhuis <info@bnoordhuis.nl>
42 lines
975 B
TypeScript
42 lines
975 B
TypeScript
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
/// <reference path="./global.d.ts" />
|
|
import { process as processModule } from "./process.ts";
|
|
import { Buffer as bufferModule } from "./buffer.ts";
|
|
import timers from "./timers.ts";
|
|
|
|
Object.defineProperty(globalThis, "global", {
|
|
value: globalThis,
|
|
writable: false,
|
|
enumerable: false,
|
|
configurable: true,
|
|
});
|
|
|
|
Object.defineProperty(globalThis, "process", {
|
|
value: processModule,
|
|
enumerable: false,
|
|
writable: true,
|
|
configurable: true,
|
|
});
|
|
|
|
Object.defineProperty(globalThis, "Buffer", {
|
|
value: bufferModule,
|
|
enumerable: false,
|
|
writable: true,
|
|
configurable: true,
|
|
});
|
|
|
|
Object.defineProperty(globalThis, "setImmediate", {
|
|
value: timers.setImmediate,
|
|
enumerable: true,
|
|
writable: true,
|
|
configurable: true,
|
|
});
|
|
|
|
Object.defineProperty(globalThis, "clearImmediate", {
|
|
value: timers.clearImmediate,
|
|
enumerable: true,
|
|
writable: true,
|
|
configurable: true,
|
|
});
|
|
|
|
export {};
|