deprecated.js 396 B

1234567891011
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = deprecated;
  6. function deprecated(props, instead, component) {
  7. if (typeof window !== 'undefined' && window.console && window.console.error) {
  8. window.console.error("Warning: ".concat(props, " is deprecated at [ ").concat(component, " ], ") + "use [ ".concat(instead, " ] instead of it."));
  9. }
  10. }