blob: a68063ba90e8e2a541b1e11ee0f654cdc1fc86dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
class Context {
constructor() {
throw new Error("Context is currently not supported");
}
}
export const WASI = Context;
export default { WASI };
|