Skip to content

Instantly share code, notes, and snippets.

@johnloy
Created May 3, 2021 21:01
Show Gist options
  • Save johnloy/2995d8b27bfce637bbf6603afd8594bf to your computer and use it in GitHub Desktop.
Save johnloy/2995d8b27bfce637bbf6603afd8594bf to your computer and use it in GitHub Desktop.
function isDstObserved(date = new Date()) {
var jan = new Date(0, 1);
var jul = new Date(6, 1);
const stdTimezoneOffset = Math.max(
jan.getTimezoneOffset(),
jul.getTimezoneOffset()
);
return date.getTimezoneOffset() < stdTimezoneOffset;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment