123456789101112131415161718192021222324 |
- 'use strict';
- module.exports = function deprecatedMethod(method, instead, docs) {
- try {
- console.warn(
- 'DEPRECATED method `' + method + '`.' +
- (instead ? ' Use `' + instead + '` instead.' : '') +
- ' This method will be removed in a future release.');
- if (docs) {
- console.warn('For more information about usage see ' + docs);
- }
- } catch (e) { }
- };
|