Can I make sqlite3 work with user defined async function ?
sth. like
db.function('foo', () => new Promise((s,j)=>setTimeout(s, 1000, 1)));
db.prepare('select foo();').get();
This will result in TypeError: User-defined function foo() returned an invalid value for now. Any work around for this ?