Date as UTC (force)

JS
S
JavaScript

Force a UTC date in JavaScript (no moment.js here). This breaks timezone-converting specifiers (as they will convert against the wrong timezone).

1  const date_as_utc = new Date(
2    this.file_started.getUTCFullYear(),
3    this.file_started.getUTCMonth(),
4    this.file_started.getUTCDate(),
5    this.file_started.getUTCHours(),
6    this.file_started.getUTCMinutes(),
7    this.file_started.getUTCSeconds(),
8    this.file_started.getUTCMilliseconds()
9  );

Created on 11/8/2018