mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 15:49:55 +08:00
7ec124fc89
* FEATURE: Discourse.deprecate can report version * Ember counterpart for deprecation
16 lines
384 B
JavaScript
16 lines
384 B
JavaScript
export default function deprecated(msg, opts = {}) {
|
|
msg = ["Deprecation notice:", msg];
|
|
if (opts.since) {
|
|
msg.push(`(deprecated since Discourse ${opts.since})`);
|
|
}
|
|
if (opts.dropFrom) {
|
|
msg.push(`(removal in Discourse ${opts.dropFrom})`);
|
|
}
|
|
msg = msg.join(" ");
|
|
|
|
if (opts.raiseError) {
|
|
throw msg;
|
|
}
|
|
console.warn(msg); // eslint-disable-line no-console
|
|
}
|