amis-rpc-design/node_modules/tiny-warning/dist/tiny-warning.cjs.js
2023-10-07 19:42:30 +08:00

23 lines
378 B
JavaScript

'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;