UNPKG

browsertime

Version:

Get performance metrics from your web page using Browsertime.

12 lines (11 loc) 350 B
(function () { // Firefox only timeToDOMContentFlushed // need pref to be activated const timing = window.performance.timing; if (timing.timeToDOMContentFlushed) { return Number( (timing.timeToDOMContentFlushed - timing.navigationStart).toFixed(0) ); } else return undefined; })();