deprecated.js 301 B

12345
  1. export default function deprecated(props, instead, component) {
  2. if (typeof window !== 'undefined' && window.console && window.console.error) {
  3. window.console.error("Warning: ".concat(props, " is deprecated at [ ").concat(component, " ], ") + "use [ ".concat(instead, " ] instead of it."));
  4. }
  5. }