blob: 7ddd50dfd5a5797bb2763b4b5ce5ffc1d5629dbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Copyright 2018-2023 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 };
|