mirror of
https://github.com/knex/knex.git
synced 2025-07-08 09:31:40 +00:00
14 lines
337 B
JavaScript
14 lines
337 B
JavaScript
'use strict';
|
|
|
|
module.exports = function(client) {
|
|
|
|
var FunctionHelper = require('../../functionhelper');
|
|
|
|
var FunctionHelper_Oracle = Object.create(FunctionHelper);
|
|
FunctionHelper_Oracle.client = client;
|
|
|
|
// Assign the newly extended `FunctionHelper` constructor to the client object.
|
|
client.FunctionHelper = FunctionHelper_Oracle;
|
|
|
|
};
|