Welcome to mirror list, hosted at ThFree Co, Russian Federation.

silentlog.js « npm-registry-fetch « node_modules « libnpmteam « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 886c5d55b2dbb2eb33d29d63e6fa34e2d77b613b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
'use strict'

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