/**
* Calculate the difference between performance.now() and the given startTime.
* This allows for the timing to be overridable during tests.
*
* @param startTime DOMHighResTimeStamp
* @returnsDOMHighResTimeStamp
*/exportconstgetTimeSince = startTime => performance.now() - startTime;