diff options
Diffstat (limited to 'runtime/js/01_version.ts')
-rw-r--r-- | runtime/js/01_version.ts | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/runtime/js/01_version.ts b/runtime/js/01_version.ts index e0a187961..33a8f50cd 100644 --- a/runtime/js/01_version.ts +++ b/runtime/js/01_version.ts @@ -1,7 +1,9 @@ // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. -const primordials = globalThis.__bootstrap.primordials; -const { ObjectFreeze } = primordials; +import { primordials } from "ext:core/mod.js"; +const { + ObjectFreeze, +} = primordials; interface Version { deno: string; |