mirror of
https://github.com/knex/knex.git
synced 2025-11-19 11:33:58 +00:00
12 lines
214 B
JavaScript
12 lines
214 B
JavaScript
|
|
|
||
|
|
// FunctionHelper
|
||
|
|
// -------
|
||
|
|
function FunctionHelper(client) {
|
||
|
|
this.client = client
|
||
|
|
}
|
||
|
|
|
||
|
|
FunctionHelper.prototype.now = function() {
|
||
|
|
return this.client.raw('CURRENT_TIMESTAMP')
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = FunctionHelper
|