UNPKG

waterline-postgresql

Version:
12 lines (9 loc) 214 B
// FunctionHelper // ------- function FunctionHelper(client) { this.client = client } FunctionHelper.prototype.now = function() { return this.client.raw('CURRENT_TIMESTAMP') } module.exports = FunctionHelper