/
githubmirror
/
preact
Обзор
Документация
Войти
/
githubmirror
/
preact
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
10.26.9
devtools/src/devtools.js
21 строка
426 B
Marvin Hagemeister
10.26.9
11 июн 2025, 15:09
11 июн 2025, 15:09
9b54e1b
Код
Авторство
О чём код?
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.26.9', options, { Fragment, Component }); } }