(sql, params)
| 1 | var Promise = require('bluebird'); |
| 2 | |
| 3 | var generateQuery = function (sql, params) { |
| 4 | return this.query.escape(sql, params); |
| 5 | }; |
| 6 | |
| 7 | var execQuery = function () { |
| 8 | var cb; |
nothing calls this directly
no outgoing calls
no test coverage detected