mirror of
https://github.com/nodejs/node.git
synced 2025-05-18 02:19:02 +00:00

PR-URL: https://github.com/nodejs/node/pull/12936 Reviewed-By: Anna Henningsen <anna@addaleax.net>
14 lines
186 B
JavaScript
14 lines
186 B
JavaScript
'use strict'
|
|
|
|
const noop = Function.prototype
|
|
module.exports = {
|
|
error: noop,
|
|
warn: noop,
|
|
info: noop,
|
|
verbose: noop,
|
|
silly: noop,
|
|
http: noop,
|
|
pause: noop,
|
|
resume: noop
|
|
}
|