aboutsummaryrefslogtreecommitdiff
path: root/src/javascript/jsc/perf_hooks.exports.js
blob: 20027213026190dad605e32e8011fd095f1ed3fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export var performance = globalThis.performance;

export function PerformanceObserver() {
  throw new Error("PerformanceEntry is not implemented yet");
}

export function PerformanceEntry() {
  throw new Error("PerformanceEntry is not implemented yet");
}

export function PerformanceNodeTiming() {
  throw new Error(
    "PerformanceNodeTiming is not supported in this environment."
  );
}