Minor: Tidy quotes and spacing

This commit is contained in:
Ernest Wong 2018-11-21 11:08:43 +13:00 committed by Fabian
parent c273741405
commit c928964562
2 changed files with 2 additions and 2 deletions

View file

@ -451,7 +451,7 @@ V86Starter.prototype.continue_init = async function(emulator, options) // jshint
let file_storage = typeof window === "undefined" || !window.indexedDB ?
new MemoryFileStorage() :
await IndexedDBFileStorage.try_create(); // jshint ignore:line
if (base_url)
if(base_url)
{
file_storage = new ServerFileStorageWrapper(file_storage, base_url);
}

View file

@ -2,7 +2,7 @@
"use strict";
process.on("unhandledRejection", exn => { throw exn; });
const util = require('util');
const util = require("util");
const { MemoryFileStorage, IndexedDBFileStorage } = require("../../build/libv86-debug.js");
const MAX_TESTFILE_SIZE = 16384;