mand-mobile/components/_util/debug.js

6 lines
127 B
JavaScript
Raw Normal View History

2018-03-26 16:04:04 +08:00
import {isProd} from './env'
export const warn = (msg, fn = 'error') => {
!isProd && console[fn](`[Mand-Mobile]: ${msg}`)
}