Skip to content

Commit

Permalink
fix(deno): use 'globalThis' instead of 'window' (#2186) (#2215)
Browse files Browse the repository at this point in the history
  • Loading branch information
rivy committed Aug 3, 2022
1 parent 5895cf1 commit 561fc7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/platform-shims/deno.ts
Expand Up @@ -91,7 +91,7 @@ export default {
}
},
exit: Deno.exit,
nextTick: window.queueMicrotask,
nextTick: globalThis.queueMicrotask,
stdColumns: columns ?? null,
},
readFileSync: Deno.readTextFileSync,
Expand Down

0 comments on commit 561fc7a

Please sign in to comment.