mirror of
https://github.com/knex/knex.git
synced 2025-07-09 18:11:17 +00:00
13 lines
339 B
JavaScript
13 lines
339 B
JavaScript
'use strict';
|
|
|
|
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;
|
|
|
|
}; |