diff options
Diffstat (limited to 'dev/database-vm.js')
-rw-r--r-- | dev/database-vm.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dev/database-vm.js b/dev/database-vm.js index b682bca3..014c989f 100644 --- a/dev/database-vm.js +++ b/dev/database-vm.js @@ -101,8 +101,8 @@ function atob(data) { } class DatabaseVM extends VM { - constructor() { - super({ + constructor(globals={}) { + super(Object.assign({ chrome, Image, Blob, @@ -111,7 +111,7 @@ class DatabaseVM extends VM { IDBKeyRange: global.IDBKeyRange, JSZip, atob - }); + }, globals)); this.context.window = this.context; this.indexedDB = global.indexedDB; } |