15 lines
247 B
JavaScript
15 lines
247 B
JavaScript
const info = (...params) => {
|
|
if (process.env.NODE_ENV !== 'test') {
|
|
console.log(...params)
|
|
}
|
|
}
|
|
|
|
const error = (...params) => {
|
|
if (process.env.NODE_ENV !== 'test') {
|
|
console.error(...params)
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
info, error
|
|
} |