You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are a couple of things you can do in a transition period.
Add the @deprecated JSDoc flag.
Add a console warning message that indicates that the function is deprecated.
A sample:
/** * @deprecated Since version 1.0. Will be deleted in version 3.0. Use bar instead. */functionfoo(){console.warn("Calling deprecated function!");// TODO: make this cross-browserbar();}
The text was updated successfully, but these errors were encountered:
There are a couple of things you can do in a transition period.
Add the @deprecated JSDoc flag.
Add a console warning message that indicates that the function is deprecated.
A sample:
The text was updated successfully, but these errors were encountered: