No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
- var isProduction = process.env.NODE_ENV === 'production';
- function warning(condition, message) {
- if (!isProduction) {
- if (condition) {
- return;
- }
-
- var text = "Warning: " + message;
-
- if (typeof console !== 'undefined') {
- console.warn(text);
- }
-
- try {
- throw Error(text);
- } catch (x) {}
- }
- }
-
- export default warning;
|