timely icon indicating copy to clipboard operation
timely copied to clipboard

Lightweight and easy to use timing decorators in JavaScript

Results 3 timely issues
Sort by recently updated
recently updated
newest added

Currently the node engine is specified as `~0.6.6` which would lock the package to be used only with `1.0.0` (I guess) but wont allow for it to be used with...

Would you be okay with switching from `Date.now()` to Node's `process.hrtime()` to allow nano second precision?

If I invoke the same decorated asynchronous function multiple times, will I see the timing values clobbered? i.e. ``` fooT = timely.promise(foo); fooT("foo").then(r => console.log(fooT.time)); fooT("bar").then(r => console.log(fooT.time)) // which...