diff options
Diffstat (limited to 'src/bun.js/perf_hooks.exports.js')
-rw-r--r-- | src/bun.js/perf_hooks.exports.js | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/src/bun.js/perf_hooks.exports.js b/src/bun.js/perf_hooks.exports.js deleted file mode 100644 index 5cc46a5e1..000000000 --- a/src/bun.js/perf_hooks.exports.js +++ /dev/null @@ -1,25 +0,0 @@ -export var performance = globalThis.performance; - -export class PerformanceObserver { - constructor() { - throw new Error("PerformanceEntry is not implemented yet"); - } -} - -export class PerformanceEntry { - constructor() { - throw new Error("PerformanceEntry is not implemented yet"); - } -} -export class PerformanceNodeTiming { - constructor() { - throw new Error("PerformanceNodeTiming is not supported in this environment."); - } -} - -export default { - performance, - PerformanceEntry, - PerformanceNodeTiming, - [Symbol.for("CommonJS")]: 0, -}; |