diff options
author | stephan <stephan@noemail.net> | 2022-10-20 18:31:32 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2022-10-20 18:31:32 +0000 |
commit | 8a8244b5c104022b5d6b4072630f012e6daf174e (patch) | |
tree | 280430fb83a31b34246b9871a1f88fededd816c3 /ext/wasm/api/sqlite3-api-glue.js | |
parent | c046f6d4d92ed22d1454f3c64da8ecc4e49f9552 (diff) | |
download | sqlite-8a8244b5c104022b5d6b4072630f012e6daf174e.tar.gz sqlite-8a8244b5c104022b5d6b4072630f012e6daf174e.zip |
Rename sqlite3_web_... to sqlite3_js_... Document the worker1.close.unlink option. Fix unlink usage in speedtest1.html. Minor JS build cleanups.
FossilOrigin-Name: ac9af71b72a749b0a040273a88480d56f49570b569389a4ea20cc055f494d8ff
Diffstat (limited to 'ext/wasm/api/sqlite3-api-glue.js')
-rw-r--r-- | ext/wasm/api/sqlite3-api-glue.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/wasm/api/sqlite3-api-glue.js b/ext/wasm/api/sqlite3-api-glue.js index 5768e44cb..7e467868e 100644 --- a/ext/wasm/api/sqlite3-api-glue.js +++ b/ext/wasm/api/sqlite3-api-glue.js @@ -592,7 +592,7 @@ self.sqlite3ApiBootstrap.initializers.push(function(sqlite3){ For the given integer, returns the SQLITE_xxx result code as a string, or undefined if no such mapping is found. */ - capi.sqlite3_web_rc_str = (rc)=>__rcMap[rc]; + capi.sqlite3_js_rc_str = (rc)=>__rcMap[rc]; /* Bind all registered C-side structs... */ const notThese = Object.assign(Object.create(null),{ // Structs NOT to register |