This repository has been archived on 2023-01-26. You can view files and clone it, but cannot push or open issues or pull requests.
scripts-old/src/utils/date.js

8 lines
196 B
JavaScript

export const inTZ = (d = new Date(), tz = 'UTC') => {
return new Date(new Date(d).toLocaleString('en-US', { timeZone: tz }));
};
export const inUTC = (d = new Date()) => {
return inTZ(d);
};