(q, string, value, parameters, types, options)
| 96 | const defaultHandlers = typeHandlers(types) |
| 97 | |
| 98 | module.exports.stringify = stringify;function stringify(q, string, value, parameters, types, options) { // eslint-disable-line |
| 99 | for (let i = 1; i < q.strings.length; i++) { |
| 100 | string += (stringifyValue(string, value, parameters, types, options)) + q.strings[i] |
| 101 | value = q.args[i] |
| 102 | } |
| 103 | |
| 104 | return string |
| 105 | } |
| 106 | |
| 107 | function stringifyValue(string, value, parameters, types, o) { |
| 108 | return ( |
no test coverage detected