We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f631e37 commit bc49fbfCopy full SHA for bc49fbf
lib/datetime_decode.js
@@ -92,7 +92,7 @@ exports.getTimeStamp = function (
92
fraction // optional fraction of second object
93
) {
94
const milliseconds = fraction ? fraction.milliseconds : 0;
95
- const dateObject = new Date(Date.UTC(secondsFromEpoch * 1000 + milliseconds));
+ const dateObject = new Date(secondsFromEpoch * 1000 + milliseconds);
96
if (!useDateStringsForType(dateStrings, 'TIMESTAMP')) {
97
return dateObject;
98
}
0 commit comments