/
Nikita_web89
/
project_itog
Обзор
Документация
Войти
/
Nikita_web89
/
project_itog
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
node_modules/debug/src/index.js
10 строк
314 B
Nikita-web89
first
18 дек 2025, 13:41
18 дек 2025, 13:41
25636bd
Код
Авторство
О чём код?
/** * 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'); }