From 4c5ab67645998fc680ccb7f57d1da9ed7e355638 Mon Sep 17 00:00:00 2001 From: deniz Date: Fri, 16 Jan 2026 17:11:19 +0300 Subject: [PATCH] value instanceof Date --- lib/connection.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/connection.js b/lib/connection.js index ebbc854c..6435d633 100644 --- a/lib/connection.js +++ b/lib/connection.js @@ -259,7 +259,7 @@ class Connection extends EventEmitter { Array.isArray(value) || nodbUtil.isVectorValue(value) || Buffer.isBuffer(value) || - util.types.isDate(value) || + value instanceof Date || value instanceof Lob || value instanceof ResultSet || value instanceof BaseDbObject