Files
med-notes/.pnpm-store/v10/files/5e/510fb1cf4136a0aeb53b54eeb3988de6838fb53aa178a2a2546d9a4bb9ff54ecd374ecfd067181293129445b54c22f925bb34311617c4ff60573358d9901c3
2025-05-09 05:30:08 +02:00

21 lines
361 B
Plaintext

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;