Files
med-notes/.pnpm-store/v10/files/de/83013e83dffcb7b673cd7d631af98cf2820be2b57c31589757b9ed50b129d6d43349c1f4ab69d30950a5c87725c865504dc38ac933cc49a4140ebd89e1a6e1
2025-05-09 05:30:08 +02:00

23 lines
378 B
Plaintext

'use strict';
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) {}
}
}
module.exports = warning;