Last active
February 14, 2023 13:52
-
-
Save afraz-khan/2154efc0c6692af6a99aa579c19222cd to your computer and use it in GitHub Desktop.
Moment utilities
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
const ONE_DAY_INTERVAL = 24 * 60 * 60; | |
/** | |
* This method restricts any given moment in time(seconds) to pre midnight like "23:59" or "11:59pm". | |
*/ | |
export trimTo24HourLimit( | |
timestamp: number // in seconds | |
) { | |
if (timestamp >= ONE_DAY_INTERVAL || timestamp <= -ONE_DAY_INTERVAL) { | |
timestamp %= ONE_DAY_INTERVAL; | |
} | |
if (timestamp < 0) { | |
timestamp += ONE_DAY_INTERVAL; | |
} | |
return timestamp; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment