diff options
-rw-r--r-- | ext/node/polyfills/perf_hooks.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ext/node/polyfills/perf_hooks.ts b/ext/node/polyfills/perf_hooks.ts index d48635856..d92b925b5 100644 --- a/ext/node/polyfills/perf_hooks.ts +++ b/ext/node/polyfills/perf_hooks.ts @@ -10,11 +10,12 @@ import { } from "ext:deno_web/15_performance.js"; class PerformanceObserver { + static supportedEntryTypes: string[] = []; observe() { - notImplemented("PerformanceObserver.observe"); + // todo(lucacasonato): actually implement this } disconnect() { - notImplemented("PerformanceObserver.disconnect"); + // todo(lucacasonato): actually implement this } } |