summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/wasi.ts
blob: eba955d9ca35c951f6b24804d576aa227f81d62e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.

// TODO(petamoriken): enable prefer-primordials for node polyfills
// deno-lint-ignore-file prefer-primordials

class Context {
  constructor() {
    throw new Error("Context is currently not supported");
  }
}

export const WASI = Context;

export default { WASI };