Skip to content

Commit fbd2138

Browse files
committed
use only isDate(date) in place of instanceof Date
1 parent 91c6969 commit fbd2138

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/pg/lib/utils.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ var prepareValue = function (val, seen) {
5454
}
5555
return buf.slice(val.byteOffset, val.byteOffset + val.byteLength) // Node.js v4 does not support those Buffer.from params
5656
}
57-
if (val instanceof Date || util.types.isDate(val)) {
57+
if (util.types.isDate(val)) {
5858
if (defaults.parseInputDatesAsUTC) {
5959
return dateToStringUTC(val)
6060
} else {

0 commit comments

Comments
 (0)