diff options
author | stephan <stephan@noemail.net> | 2022-11-03 21:21:10 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2022-11-03 21:21:10 +0000 |
commit | 4df2ab575facacd8987b65078202cc638e0252ae (patch) | |
tree | 56518bce8cdaa44d601599371bf3e2ff70953022 /ext/wasm/api/sqlite3-opfs-async-proxy.js | |
parent | de6186e04f96ddca46ab6a100b954a5db300fa1c (diff) | |
download | sqlite-4df2ab575facacd8987b65078202cc638e0252ae.tar.gz sqlite-4df2ab575facacd8987b65078202cc638e0252ae.zip |
Globally replace '' with "" for empty JS strings to please C preprocessor.
FossilOrigin-Name: e92e1f42bef94a1df29f66b4111ebfde93eba3759bc5d5a9c95f714508851346
Diffstat (limited to 'ext/wasm/api/sqlite3-opfs-async-proxy.js')
-rw-r--r-- | ext/wasm/api/sqlite3-opfs-async-proxy.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/wasm/api/sqlite3-opfs-async-proxy.js b/ext/wasm/api/sqlite3-opfs-async-proxy.js index 86276910a..09c56ff1d 100644 --- a/ext/wasm/api/sqlite3-opfs-async-proxy.js +++ b/ext/wasm/api/sqlite3-opfs-async-proxy.js @@ -678,7 +678,7 @@ const initS11n = ()=>{ state.s11n.storeException = state.asyncS11nExceptions ? ((priority,e)=>{ if(priority<=state.asyncS11nExceptions){ - state.s11n.serialize([e.name,': ',e.message].join('')); + state.s11n.serialize([e.name,': ',e.message].join("")); } }) : ()=>{}; |