Skip to main content

measure

method Performance.measure
Jump to headingPerformance.measure(
name: string,
startMark?: string,
endMark?: string,
): PerformanceMeasure

Creates a new PerformanceMeasure entry in the Performance Timeline. A PerformanceMeasure is a subclass of PerformanceEntry whose performanceEntry.entryType is always 'measure', and whose performanceEntry.duration measures the number of milliseconds elapsed since startMark and endMark.

The startMark argument may identify any existing PerformanceMark in the the Performance Timeline, or may identify any of the timestamp properties provided by the PerformanceNodeTiming class. If the named startMark does not exist, then startMark is set to timeOrigin by default.

The endMark argument must identify any existing PerformanceMark in the the Performance Timeline or any of the timestamp properties provided by the PerformanceNodeTiming class. If the named endMark does not exist, an error will be thrown.

Parameters Jump to heading

Jump to headingname: string
optional
Jump to headingstartMark: string
optional
Jump to headingendMark: string

Return Type Jump to heading

The PerformanceMeasure entry that was created

Back to top