6 lines
124 B
JavaScript
6 lines
124 B
JavaScript
/*eslint no-console: ["error", { allow: ["warn"] }] */
|
|
|
|
module.exports = function deprecate (msg) {
|
|
console.warn(msg);
|
|
};
|