Created
April 23, 2024 20:43
-
-
Save macdonst/1a5e9225bdcd6b8d4ae0a78e490f60ba to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function isNakedDay() { | |
const now = new Date(); | |
const year = now.getFullYear(); | |
const start = new Date(year, 3, 24, -14, 0, 0).getTime() / 1000; | |
const end = new Date(year, 3, 24, 36, 0, 0).getTime() / 1000; | |
const z = now.getTimezoneOffset() * 60; | |
const currentTime = now.getTime() / 1000 - z; | |
return currentTime >= start && currentTime <= end; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment