diff options
author | stephan <stephan@noemail.net> | 2024-06-11 17:04:43 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2024-06-11 17:04:43 +0000 |
commit | e15d5de0a6e288dd2292b6ff3958cb4390bfe5a4 (patch) | |
tree | 0affba72d8479a08a5927f5126a0f2f4cf159482 /ext/wasm/api/sqlite3-api-worker1.js | |
parent | cf2710e0b61dbe5abd3b0017905dfc5cb6c21d8d (diff) | |
download | sqlite-e15d5de0a6e288dd2292b6ff3958cb4390bfe5a4.tar.gz sqlite-e15d5de0a6e288dd2292b6ff3958cb4390bfe5a4.zip |
Remove some dead JS code and update some JS docs.
FossilOrigin-Name: 6935ac71bad3d36cc519f0325ae4447a674f257309d020cdc0741160fcce0580
Diffstat (limited to 'ext/wasm/api/sqlite3-api-worker1.js')
-rw-r--r-- | ext/wasm/api/sqlite3-api-worker1.js | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/ext/wasm/api/sqlite3-api-worker1.js b/ext/wasm/api/sqlite3-api-worker1.js index 2e597613e..991862545 100644 --- a/ext/wasm/api/sqlite3-api-worker1.js +++ b/ext/wasm/api/sqlite3-api-worker1.js @@ -571,7 +571,6 @@ sqlite3.initWorker1API = function(){ }); rc.version = sqlite3.version; rc.vfsList = sqlite3.capi.sqlite3_js_vfs_list(); - rc.opfsEnabled = !!sqlite3.opfs; return rc; }, @@ -598,12 +597,6 @@ sqlite3.initWorker1API = function(){ toss: function(ev){ toss("Testing worker exception"); - }, - - 'opfs-tree': async function(ev){ - if(!sqlite3.opfs) toss("OPFS support is unavailable."); - const response = await sqlite3.opfs.treeList(); - return response; } }/*wMsgHandler*/; |