@rainder/measure
v1.0.1
Published
Helps to measure time taken to execute the code
Downloads
121
Readme
Time
import { measure } from '@rainder/measure';
const ms = measure();
doSomethinghere();
console.log(ms()); //outputs time taken in milliseconds
That's pretty much it