Last active
June 27, 2019 15:32
-
-
Save ashour/6c06ee733f599e5573dcdecd8d5af92a 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
| const MILLISECONDS_TO_SECONDS: number = 0.001; | |
| /** | |
| * Convert milliseconds to seconds | |
| */ | |
| function millisecondsToSeconds(milliseconds: number): number { | |
| return Math.floor(milliseconds * MILLISECONDS_TO_SECONDS); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment