MCPcopy Create free account
hub / github.com/angular/angular / mark

Function mark

packages/zone.js/lib/zone-impl.ts:772–774  ·  view source on GitHub ↗
(name: string)

Source from the content-addressed store, hash-verified

770 const performance: {mark(name: string): void; measure(name: string, label: string): void} =
771 global['performance'];
772 function mark(name: string) {
773 performance && performance['mark'] && performance['mark'](name);
774 }
775 function performanceMeasure(name: string, label: string) {
776 performance && performance['measure'] && performance['measure'](name, label);
777 }

Callers 8

initZoneFunction · 0.70
__load_patchMethod · 0.70
promise.jsFile · 0.50
listenerFunction · 0.50
timeout.jsFile · 0.50
testAddRemoveFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected