knex/lib/dialects/sqlite3/functionhelper.js

11 lines
324 B
JavaScript
Raw Normal View History

module.exports = function(client) {
var FunctionHelper = require('../../functionhelper');
var FunctionHelper_SQLite3 = Object.create(FunctionHelper);
FunctionHelper_SQLite3.client = client;
// Assign the newly extended `FunctionHelper` constructor to the client object.
client.FunctionHelper = FunctionHelper_SQLite3;
};