diff options
author | stephan <stephan@noemail.net> | 2022-09-20 10:47:36 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2022-09-20 10:47:36 +0000 |
commit | c2ccd676890392b1850bdb17d1f22233fb9c0570 (patch) | |
tree | 972e56a95752325fffeb9c41c23273403ed57354 /ext/wasm/api/sqlite3-api-opfs.js | |
parent | c9e2602e8f55d7a40d36ef6080529c7fa96ed11f (diff) | |
download | sqlite-c2ccd676890392b1850bdb17d1f22233fb9c0570.tar.gz sqlite-c2ccd676890392b1850bdb17d1f22233fb9c0570.zip |
OPFS proxy: remove one sanity-checking-only level of proxy function to shave off a few microseconds.
FossilOrigin-Name: b534831f3efb8910a17e29956e3e87cc80055ea66e15dbef992b6a556ff042f8
Diffstat (limited to 'ext/wasm/api/sqlite3-api-opfs.js')
-rw-r--r-- | ext/wasm/api/sqlite3-api-opfs.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/wasm/api/sqlite3-api-opfs.js b/ext/wasm/api/sqlite3-api-opfs.js index a0630d8e7..dd61ee0a2 100644 --- a/ext/wasm/api/sqlite3-api-opfs.js +++ b/ext/wasm/api/sqlite3-api-opfs.js @@ -443,7 +443,7 @@ sqlite3.installOpfsVfs = function callee(asyncProxyUri = callee.defaultProxyUri) } const memKey = tgt.memberKey(name); //log("installMethod",tgt, name, sigN); - const fProxy = 1 + const fProxy = 0 // We can remove this proxy middle-man once the VFS is working ? callee.argcProxy(func, sigN) : func; |