| 55 | |
| 56 | if (Array.isArray(val)) { |
| 57 | const partialEscape = escVal => escape(escVal, timeZone, dialect, format); |
| 58 | if (dialect === 'postgres' && !format) { |
| 59 | return dataTypes.ARRAY.prototype.stringify(val, { escape: partialEscape }); |
| 60 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…