Are there any methods to profile a plugins performance?
I can use:
var time = new Date().getTime();
But is a more accurate measurement available?
var time = getMicrosecond();
Use Case:
Running a processor intensive operation such as exporting numerous renditions to see how long it takes.