site/node_modules/preact/devtools/src/devtools.js

22 lines
426 B
JavaScript
Raw Normal View History

2024-10-14 08:09:33 +02:00
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.24.3', options, {
Fragment,
Component
});
}
}