/
cyberCat_maikl
/
02
Обзор
Документация
Войти
/
cyberCat_maikl
/
02
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
node_modules/debug/src/index.js
10 строк
314 B
catmaikl777
Initial commit: Fire Cat Chat with notifications
29 окт 2025, 19:42
29 окт 2025, 19:42
3b63f2c
Код
Авторство
О чём код?
/** * 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'); }