diff options
author | Tyler Brazier <tyler@tylerbrazier.com> | 2016-10-11 22:34:36 -0500 |
---|---|---|
committer | Luigi Pinca <luigipinca@gmail.com> | 2016-10-16 22:01:02 +0200 |
commit | 2ebd445e6130936362d7975743e6b7d725d2b0fb (patch) | |
tree | f14cf7e24f076657a262da9561f59b33632315ef /lib/console.js | |
parent | f478b46a00cfe6f631fd85012ba2896a9e8bf5db (diff) | |
download | node-new-2ebd445e6130936362d7975743e6b7d725d2b0fb.tar.gz |
console: name anonymous functions
Ref: https://github.com/nodejs/node/issues/8913
PR-URL: https://github.com/nodejs/node/pull/9047
Reviewed-By: Ilkka Myller <ilkka.myller@nodefield.com>
Reviewed-By: Michaƫl Zasso <targos@protonmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Diffstat (limited to 'lib/console.js')
-rw-r--r-- | lib/console.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/console.js b/lib/console.js index 2359cb36e0..ba92c91636 100644 --- a/lib/console.js +++ b/lib/console.js @@ -39,7 +39,7 @@ function Console(stdout, stderr) { // As of v8 5.0.71.32, the combination of rest param, template string // and .apply(null, args) benchmarks consistently faster than using // the spread operator when calling util.format. -Console.prototype.log = function(...args) { +Console.prototype.log = function log(...args) { this._stdout.write(`${util.format.apply(null, args)}\n`); }; @@ -47,7 +47,7 @@ Console.prototype.log = function(...args) { Console.prototype.info = Console.prototype.log; -Console.prototype.warn = function(...args) { +Console.prototype.warn = function warn(...args) { this._stderr.write(`${util.format.apply(null, args)}\n`); }; @@ -55,18 +55,18 @@ Console.prototype.warn = function(...args) { Console.prototype.error = Console.prototype.warn; -Console.prototype.dir = function(object, options) { +Console.prototype.dir = function dir(object, options) { options = Object.assign({customInspect: false}, options); this._stdout.write(`${util.inspect(object, options)}\n`); }; -Console.prototype.time = function(label) { +Console.prototype.time = function time(label) { this._times.set(label, process.hrtime()); }; -Console.prototype.timeEnd = function(label) { +Console.prototype.timeEnd = function timeEnd(label) { const time = this._times.get(label); if (!time) { process.emitWarning(`No such label '${label}' for console.timeEnd()`); @@ -90,7 +90,7 @@ Console.prototype.trace = function trace(...args) { }; -Console.prototype.assert = function(expression, ...args) { +Console.prototype.assert = function assert(expression, ...args) { if (!expression) { require('assert').ok(false, util.format.apply(null, args)); } |