diff options
Diffstat (limited to 'ext/wasm/sqlite3-opfs-async-proxy.js')
-rw-r--r-- | ext/wasm/sqlite3-opfs-async-proxy.js | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/ext/wasm/sqlite3-opfs-async-proxy.js b/ext/wasm/sqlite3-opfs-async-proxy.js index 5969962d7..3ae6af043 100644 --- a/ext/wasm/sqlite3-opfs-async-proxy.js +++ b/ext/wasm/sqlite3-opfs-async-proxy.js @@ -287,12 +287,6 @@ const vfsAsyncImpls = { } storeAndNotify('xRead',rc); }, - xSleep: async function f(ms){ - log("xSleep(",ms,")"); - await new Promise((resolve)=>{ - setTimeout(()=>resolve(), ms); - }).finally(()=>storeAndNotify('xSleep',0)); - }, xSync: async function({fid,flags/*ignored*/}){ log("xSync(",arguments[0],")"); const fh = __openFiles[fid]; |