mirror of
https://github.com/koush/scrypted.git
synced 2026-03-04 18:33:18 +00:00
7 lines
227 B
TypeScript
7 lines
227 B
TypeScript
export function datePickerLocalTimeToUTC(value: string) {
|
|
const d = new Date(value);
|
|
// shift month/date to local time midnight.
|
|
const dt = d.getTime() + new Date().getTimezoneOffset() * 60 * 1000;
|
|
return dt;
|
|
}
|