Projekt

Obecné

Profil

Stáhnout (361 Bajtů) Statistiky
| Větev: | Revize:
1
var isProduction = process.env.NODE_ENV === 'production';
2
function warning(condition, message) {
3
  if (!isProduction) {
4
    if (condition) {
5
      return;
6
    }
7

    
8
    var text = "Warning: " + message;
9

    
10
    if (typeof console !== 'undefined') {
11
      console.warn(text);
12
    }
13

    
14
    try {
15
      throw Error(text);
16
    } catch (x) {}
17
  }
18
}
19

    
20
export default warning;
(3-3/5)