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