Skip to content

Instantly share code, notes, and snippets.

@yarastqt
Created October 28, 2020 13:14
Show Gist options
  • Select an option

  • Save yarastqt/124947f990fecc47f239c078f2a2fd37 to your computer and use it in GitHub Desktop.

Select an option

Save yarastqt/124947f990fecc47f239c078f2a2fd37 to your computer and use it in GitHub Desktop.
export default function deprecated(props, instead, component) {
if (typeof window !== 'undefined' && window.console && window.console.error) {
window.console.error(
`Warning: ${props} is deprecated at [ ${component} ], ` +
`use [ ${instead} ] instead of it.`
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment