mirror of
https://github.com/knex/knex.git
synced 2025-08-14 19:50:49 +00:00

When this eventually enabled on the client side, we can build this into the build script.
11 lines
170 B
JavaScript
11 lines
170 B
JavaScript
// SQLite3 - WebSQL
|
|
// ----------
|
|
var SQLite3 = require('./sqlite3');
|
|
|
|
// Constructor for the WebSQL client.
|
|
var WebSQL = SQLite3.extend({
|
|
|
|
});
|
|
|
|
module.exports = WebSQL;
|