You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
308 B
14 lines
308 B
'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;
|
|
|