1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

fix(ext/node): use primordials in ext/node/polyfills/wasi.ts (#25608)

Toward #24236
This commit is contained in:
Jake Abed 2024-09-13 10:01:07 -07:00 committed by GitHub
parent 8539cacbbe
commit d162733db2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,7 +1,8 @@
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
// TODO(petamoriken): enable prefer-primordials for node polyfills import { primordials } from "ext:core/mod.js";
// deno-lint-ignore-file prefer-primordials
const { Error } = primordials;
class Context { class Context {
constructor() { constructor() {