Notes2/static/js/lib/node_modules/preact/devtools/src/devtools.js
2026-05-15 08:22:43 +02:00

21 lines
426 B
JavaScript

import { Component, Fragment, options } from 'preact';
export function initDevTools() {
const globalVar =
typeof globalThis !== 'undefined'
? globalThis
: typeof window !== 'undefined'
? window
: undefined;
if (
globalVar !== null &&
globalVar !== undefined &&
globalVar.__PREACT_DEVTOOLS__
) {
globalVar.__PREACT_DEVTOOLS__.attachPreact('10.25.1', options, {
Fragment,
Component
});
}
}