summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/pacote/lib/util/silentlog.js
blob: 4c9d6c57e8b7d3513c32d2ee6e75c10a1b04a2b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
'use strict'

const noop = Function.prototype
module.exports = {
  error: noop,
  warn: noop,
  info: noop,
  verbose: noop,
  silly: noop,
  http: noop,
  pause: noop,
  resume: noop
}