Skip to content

Latest commit

 

History

History
37 lines (21 loc) · 975 Bytes

README.md

File metadata and controls

37 lines (21 loc) · 975 Bytes

js-utils

js-utils is a set of javascript utilities for use in other projects

Timer:

  • Create a timer that can be started, paused/resumed, stopped

  • Useful to keep track of elapsed time (performance or time spent)

Features of Timer:

  • Start a timer through the start() function

  • Once a timer is started, it can be paused/resumed using the pause_resume() function and it keeps track of the elapsed time (as long as it has not been stopped).

  • A timer can be stopped using the stop() function. When a timer is stopped, it cannot be started/paused/resumed unless reset

  • A stopped timer can be reset using the reset() function upon which it can be restarted

License & Copyright:

js-utils is provided under AGPLv3 license. Copyright (C) 2020-2024 Arun Kunchithapatham

Feedback:

Please use Github to send any feedback, bug reports, enhancement requests.

Release notes:

Please check the RELEASE-NOTES.md file for detailed release notes.