UNPKG

262 BJavaScriptView Raw
1/** @deprecated Use `warning` instead. This will be removed in next major version */
2export default function warn(msg) {
3 if (process.env.NODE_ENV !== 'production') {
4 if (typeof console !== 'undefined' && console.warn) {
5 console.warn(msg);
6 }
7 }
8}
\No newline at end of file