diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-05-18 20:39:20 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-05-18 21:25:37 -0400 |
commit | 8886e1b55f3495b3b798825274a910e5f231a74b (patch) | |
tree | 1b1be7a8819cd24e9a1da9cc1914ff1db34a0b9b /util.ts | |
parent | 39da69f051c48f15dd4af5e8a4cbe17ff4f349e5 (diff) |
Initial support for remote imports
Diffstat (limited to 'util.ts')
-rw-r--r-- | util.ts | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -9,6 +9,8 @@ export const globalEval = eval; // TODO The underscore is because it's conflicting with @types/node. export const _global = globalEval("this"); +_global["window"] = _global; // Create a window object. + const print = V8Worker2.print; // To control internal logging output |