/
sturg872
/
test-clone
Обзор
Документация
Войти
/
sturg872
/
test-clone
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
node_modules/debug/src/index.js
10 строк
263 B
Андрей Соловьев
first commit
01 май 2024, 11:55
01 май 2024, 11:55
3387fd3
Код
Авторство
О чём код?
/** * 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'); }