Projekt

Obecné

Profil

Stáhnout (321 Bajtů) Statistiky
| Větev: | Revize:
1
var isProduction = process.env.NODE_ENV === 'production';
2
var prefix = 'Invariant failed';
3
function invariant(condition, message) {
4
    if (condition) {
5
        return;
6
    }
7
    if (isProduction) {
8
        throw new Error(prefix);
9
    }
10
    throw new Error(prefix + ": " + (message || ''));
11
}
12

    
13
export default invariant;
(3-3/5)