Function
deprecate (message, test, options) public
Module:
@ember/debug
Defined in packages/@ember/debug/lib/deprecate.ts:161
Available since v1.0.0
- message
- String
- A description of the deprecation.
- test
- Boolean
- A boolean. If falsy, the deprecation will be displayed.
- options
- Object
- id
- String
- A unique id for this deprecation. The id can be used by Ember debugging tools to change the behavior (raise, log or silence) for that specific deprecation. The id should be namespaced by dots, e.g. "view.helper.select".
- until
- String
- The version of Ember when this deprecation warning will be removed.
- url
- String
- An optional url to the transition guide on the emberjs.com website.
Display a deprecation warning with the provided message and a stack trace (Chrome and Firefox only).
- In a production build, this method is defined as an empty function (NOP). Uses of this method in Ember itself are stripped from the ember.prod.js build.