Skip to content

Commit bc49fbf

Browse files
committed
Revert timestamp UTC change
1 parent f631e37 commit bc49fbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/datetime_decode.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ exports.getTimeStamp = function (
9292
fraction // optional fraction of second object
9393
) {
9494
const milliseconds = fraction ? fraction.milliseconds : 0;
95-
const dateObject = new Date(Date.UTC(secondsFromEpoch * 1000 + milliseconds));
95+
const dateObject = new Date(secondsFromEpoch * 1000 + milliseconds);
9696
if (!useDateStringsForType(dateStrings, 'TIMESTAMP')) {
9797
return dateObject;
9898
}

0 commit comments

Comments
 (0)