Home
last modified time | relevance | path

Searched refs:urlParams (Results 1 – 10 of 10) sorted by relevance

/sqlite-3.40.0/ext/wasm/api/
H A Dsqlite3-worker1.js36 const urlParams = new URL(self.location.href).searchParams;
38 if(urlParams.has('sqlite3.dir')){
39 theJs = urlParams.get('sqlite3.dir') + '/' + theJs;
H A Dextern-post-js.js37 urlParams: new URL(self.location.href).searchParams property
44 if(initModuleState.urlParams.has('sqlite3.dir')){
45 initModuleState.sqlite3Dir = initModuleState.urlParams.get('sqlite3.dir') +'/';
H A Dsqlite3-worker1-promiser.js249 const urlParams = new URL(self.location.href).searchParams;
250 if(urlParams.has('sqlite3.dir')){
251 theJs = urlParams.get('sqlite3.dir') + '/' + theJs;
H A Dpre-js.js33 const up = this.urlParams;
H A Dsqlite3-api-opfs.js93 const urlParams = new URL(self.location.href).searchParams;
95 options.verbose = urlParams.has('opfs-verbose') ? 3 : 2;
98 options.sanityChecks = urlParams.has('opfs-sanity-check');
/sqlite-3.40.0/ext/wasm/
H A Dspeedtest1-worker.js4 const urlParams = new URL(self.location.href).searchParams;
5 if(urlParams.has('sqlite3.dir')){
6 speedtestJs = urlParams.get('sqlite3.dir') + '/' + speedtestJs;
H A Ddemo-123.js269 const urlParams = new URL(self.location.href).searchParams;
270 if(urlParams.has('sqlite3.dir')){
271 sqlite3Js = urlParams.get('sqlite3.dir') + '/' + sqlite3Js;
H A Dbatch-runner.js21 const urlParams = new URL(self.location.href).searchParams;
23 if(urlParams.has('cachesize')) return +urlParams.get('cachesize');
H A Dtester1.js1836 const urlParams = new URL(self.location.href).searchParams;
1837 if(urlParams.has('sqlite3.dir')){
1838 sqlite3Js = urlParams.get('sqlite3.dir') + '/' + sqlite3Js;
/sqlite-3.40.0/ext/wasm/fiddle/
H A Dfiddle.js810 const urlParams = new URL(self.location.href).searchParams;
811 SF.dbExec(urlParams.get('sql') || null);