/
aburavov
/
ready_web_app
Обзор
Документация
Войти
/
aburavov
/
ready_web_app
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
node_modules/debug/src/index.js
10 строк
263 B
aburavov
first com
15 июл 2025, 11:02
15 июл 2025, 11:02
81fd746
Код
Авторство
О чём код?
/** * Detect Electron renderer process, which is node, but we should * treat as a browser. */ if (typeof process !== 'undefined' && process.type === 'renderer') { module.exports = require('./browser.js'); } else { module.exports = require('./node.js'); }