knex/clients/web/websql.js
Tim Griesser 3c8d08a64b Removing unnecessary UMD
When this eventually enabled on the client side,
we can build this into the build script.
2013-11-27 16:51:01 -05:00

11 lines
170 B
JavaScript

// SQLite3 - WebSQL
// ----------
var SQLite3 = require('./sqlite3');
// Constructor for the WebSQL client.
var WebSQL = SQLite3.extend({
});
module.exports = WebSQL;