From d379b7af89a7b00f62ba1108f08bc24f75277030 Mon Sep 17 00:00:00 2001 From: skyclouds2001 <95597335+skyclouds2001@users.noreply.github.com> Date: Sat, 9 Nov 2024 00:27:59 +0800 Subject: [PATCH] doc: add missing documentation for `PerformanceObserver.prototype.takeRecords()` --- doc/api/perf_hooks.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/doc/api/perf_hooks.md b/doc/api/perf_hooks.md index 7c3144939244b6..5f1080b2d6c390 100644 --- a/doc/api/perf_hooks.md +++ b/doc/api/perf_hooks.md @@ -1339,6 +1339,14 @@ for (let n = 0; n < 3; n++) performance.mark(`test${n}`); ``` +### `performanceObserver.takeRecords()` + + + +Gets the current list of {PerformanceEntry} objects stored in the performance observer, emptying it out. + ## Class: `PerformanceObserverEntryList`