mirror of
https://github.com/denoland/deno.git
synced 2025-08-31 15:57:53 +00:00
fix(ext/node): add stubs for perf_hooks.PerformaceObserver (#23958)
Fixes https://github.com/denoland/deno/issues/23943
This commit is contained in:
parent
fa1ba256d2
commit
aeafb7b39e
2 changed files with 12 additions and 4 deletions
|
@ -9,8 +9,15 @@ import {
|
|||
PerformanceEntry,
|
||||
} from "ext:deno_web/15_performance.js";
|
||||
|
||||
// FIXME(bartlomieju)
|
||||
const PerformanceObserver = undefined;
|
||||
class PerformanceObserver {
|
||||
observe() {
|
||||
notImplemented("PerformanceObserver.observe");
|
||||
}
|
||||
disconnect() {
|
||||
notImplemented("PerformanceObserver.disconnect");
|
||||
}
|
||||
}
|
||||
|
||||
const constants = {};
|
||||
|
||||
const performance:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue