/
katkattek
/
hello-dokploy
Обзор
Документация
Войти
/
katkattek
/
hello-dokploy
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
node_modules/debug/src/index.js
10 строк
314 B
katkattek
first commit
27 мар 2026, 09:42
27 мар 2026, 09:42
086aad8
Код
Авторство
О чём код?
/** * Detect Electron renderer / nwjs process, which is node, but we should * treat as a browser. */ if (typeof process === 'undefined' || process.type === 'renderer' || process.browser === true || process.__nwjs) { module.exports = require('./browser.js'); } else { module.exports = require('./node.js'); }