discourse/app/assets/javascripts/discourse-common/lib/deprecated.js.es6

16 lines
384 B
Plaintext
Raw Normal View History

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
}