(name: string)
| 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 | } |
no outgoing calls
no test coverage detected