Skip to content

Instantly share code, notes, and snippets.

@afraz-khan
Last active February 14, 2023 13:52
Show Gist options
  • Save afraz-khan/2154efc0c6692af6a99aa579c19222cd to your computer and use it in GitHub Desktop.
Save afraz-khan/2154efc0c6692af6a99aa579c19222cd to your computer and use it in GitHub Desktop.
Moment utilities
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