We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91c6969 commit fbd2138Copy full SHA for fbd2138
packages/pg/lib/utils.js
@@ -54,7 +54,7 @@ var prepareValue = function (val, seen) {
54
}
55
return buf.slice(val.byteOffset, val.byteOffset + val.byteLength) // Node.js v4 does not support those Buffer.from params
56
57
- if (val instanceof Date || util.types.isDate(val)) {
+ if (util.types.isDate(val)) {
58
if (defaults.parseInputDatesAsUTC) {
59
return dateToStringUTC(val)
60
} else {
0 commit comments