mirror of
https://github.com/knex/knex.git
synced 2026-01-02 01:57:42 +00:00
11 lines
192 B
JavaScript
11 lines
192 B
JavaScript
module.exports = {
|
|
|
|
pgBindings: function(sql) {
|
|
var questionCount = 0;
|
|
return sql.replace(/\?/g, function() {
|
|
questionCount++;
|
|
return '$' + questionCount;
|
|
});
|
|
}
|
|
|
|
}; |