UNPKG
xbpr
Version:
latest (0.0.1)
0.0.1
xbp react ui by @arco-design/web-react
xbpr
/
es
/
_util
/
warning.js
8 lines
(7 loc)
•
224 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
export
default
function
warning
(
condition, message
) {
if
(process.
env
.
NODE_ENV
!==
'production'
&&
console
) {
if
(condition) {
console
.
error
(
"[@arco-design/web-react]: "
+ message); } } }