mirror of
https://github.com/idanoo/GoScrobble
synced 2025-07-01 21:52:19 +00:00
13 lines
321 B
JavaScript
13 lines
321 B
JavaScript
var isProduction = process.env.NODE_ENV === 'production';
|
|
var prefix = 'Invariant failed';
|
|
function invariant(condition, message) {
|
|
if (condition) {
|
|
return;
|
|
}
|
|
if (isProduction) {
|
|
throw new Error(prefix);
|
|
}
|
|
throw new Error(prefix + ": " + (message || ''));
|
|
}
|
|
|
|
export default invariant;
|