/
yu-yu
/
restaurant-project
Обзор
Документация
Войти
/
yu-yu
/
restaurant-project
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
node_modules/debug/src/index.js
10 строк
314 B
yu-yu-3
практика
19 дек 2025, 16:45
19 дек 2025, 16:45
6bcfa15
Код
Авторство
О чём код?
/** * 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'); }