diff options
-rw-r--r-- | std/wasi/snapshot_preview1.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/std/wasi/snapshot_preview1.ts b/std/wasi/snapshot_preview1.ts index 30756fe82..98850fc1f 100644 --- a/std/wasi/snapshot_preview1.ts +++ b/std/wasi/snapshot_preview1.ts @@ -296,8 +296,8 @@ export default class Context { exports: Record<string, WebAssembly.ImportValue>; constructor(options: ContextOptions) { - this.args = options.args ? options.args : []; - this.env = options.env ? options.env : {}; + this.args = options.args ?? []; + this.env = options.env ?? {}; this.exitOnReturn = options.exitOnReturn ?? true; this.memory = null!; |