/
buuded
/
app-web-project
Обзор
Документация
Войти
/
buuded
/
app-web-project
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
node_modules/eslint-plugin-react/lib/util/error.js
14 строк
308 B
buuded
first-commit
27 янв 2025, 10:32
27 янв 2025, 10:32
9efc400
Код
Авторство
О чём код?
'use strict'; /** * Logs out a message if there is no format option set. * @param {string} message - Message to log. */ function error(message) { if (!/=-(f|-format)=/.test(process.argv.join('='))) { // eslint-disable-next-line no-console console.error(message); } } module.exports = error;