Sha256: 12e9a9bb1931c31811d1a6f21a81b7a230a61beb8d5bc286cc23727f03c01dc5
Contents?: true
Size: 727 Bytes
Versions: 28
Compression:
Stored size: 727 Bytes
Contents
'use strict'; /*eslint no-console:0*/ /** * Supply a warning to the developer that a method they are using * has been deprecated. * * @param {string} method The name of the deprecated method * @param {string} [instead] The alternate method to use if applicable * @param {string} [docs] The documentation URL to get further details */ 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) { /* Ignore */ } };
Version data entries
28 entries across 16 versions & 5 rubygems