(name: string)
| 775 | const performance: {mark(name: string): void; measure(name: string, label: string): void} = |
| 776 | global['performance']; |
| 777 | function mark(name: string) { |
| 778 | performance && performance['mark'] && performance['mark'](name); |
| 779 | } |
| 780 | function performanceMeasure(name: string, label: string) { |
| 781 | performance && performance['measure'] && performance['measure'](name, label); |
| 782 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…