All Downloads are FREE. Search and download functionalities are using the official Maven repository.

utils.warning.js Maven / Gradle / Ivy

The newest version!
const { N2O_WARNING_WATCHER = false } = window

export default (condition, message) => {
    if (!condition) {
        return
    }

    if (process.env.NODE_ENV !== 'production' || N2O_WARNING_WATCHER) {
        // eslint-disable-next-line no-console
        console.warn(message)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy