/* eslint-disable no-console, no-empty */var warnCache = {
current: {}
};
/**
* Logs a warning if the condition is not met.
* This is used to log issues in development environment only.
*/functionwarn(condition, message) {
{
return;
}
}
export { warn, warnCache };