Skip to content
How much time has past since...?
JavaScript
Find file
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Failed to load latest commit information.
src
test
.gitignore
README.md
bower.json
karma.conf.js

README.md

Elapsed.js

Elapsed.js is the result of a simple abstaction I found I was commonly coding in my animation code to calculate things like mouse velocity or physics settling. It has two methods, start and elapsed.

var timer = Elapsed();
var key = timer.start('key');
// Do a bunch of stuff
var elapsed = timer.elapsed('key'); // How much time has elapsed since key was called?

Installation

bower install elapsed
Something went wrong with that request. Please try again.