8ac2d8510e
FossilOrigin-Name: 41762f9518bb51b8b23ae6507628d6d3256044e1f2aca6e7251dc57722062c42
33 lines
1019 B
JavaScript
33 lines
1019 B
JavaScript
/*
|
|
2022-05-22
|
|
|
|
The author disclaims copyright to this source code. In place of a
|
|
legal notice, here is a blessing:
|
|
|
|
* May you do good and not evil.
|
|
* May you find forgiveness for yourself and forgive others.
|
|
* May you share freely, never taking more than you give.
|
|
|
|
***********************************************************************
|
|
|
|
A basic test script for sqlite3-api.js. This file must be run in
|
|
main JS thread. It will load sqlite3.js in a worker thread.
|
|
*/
|
|
'use strict';
|
|
(function(){
|
|
const toss = function(...args){throw new Error(args.join(' '))};
|
|
const log = console.log.bind(console),
|
|
warn = console.warn.bind(console),
|
|
error = console.error.bind(console);
|
|
const W = new Worker("scratchpad-opfs-worker2.js");
|
|
self.onmessage = function(ev){
|
|
ev = ev.data;
|
|
const d = ev.data;
|
|
switch(ev.type){
|
|
case 'stdout': log(d); break;
|
|
case 'stderr': error(d); break;
|
|
default: warn("Unhandled message type:",ev); break;
|
|
}
|
|
};
|
|
})();
|