depr-check.js 451 B

1234567891011121314151617181920212223
  1. 'use strict'
  2. const log = require('npmlog')
  3. const deprecated = {}
  4. const deprWarned = {}
  5. module.exports = deprCheck
  6. function deprCheck (data) {
  7. if (deprecated[data._id]) {
  8. data.deprecated = deprecated[data._id]
  9. }
  10. if (data.deprecated) {
  11. deprecated[data._id] = data.deprecated
  12. if (!deprWarned[data._id]) {
  13. deprWarned[data._id] = true
  14. log.warn('deprecated', '%s: %s', data._id, data.deprecated)
  15. }
  16. }
  17. return data
  18. }