mand-mobile/components/_util/debug.js

6 lines
127 B
JavaScript

import {isProd} from './env'
export const warn = (msg, fn = 'error') => {
!isProd && console[fn](`[Mand-Mobile]: ${msg}`)
}