console: port errors to new system
This ports the errors to the new error system. PR-URL: https://github.com/nodejs/node/pull/18857 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
This commit is contained in:
parent
6e1c25c456
commit
7c8beb5b5f
@ -21,7 +21,7 @@
|
|||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
const errors = require('internal/errors');
|
const { ERR_CONSOLE_WRITABLE_STREAM } = require('internal/errors').codes;
|
||||||
const util = require('util');
|
const util = require('util');
|
||||||
const kCounts = Symbol('counts');
|
const kCounts = Symbol('counts');
|
||||||
|
|
||||||
@ -35,12 +35,12 @@ function Console(stdout, stderr, ignoreErrors = true) {
|
|||||||
return new Console(stdout, stderr, ignoreErrors);
|
return new Console(stdout, stderr, ignoreErrors);
|
||||||
}
|
}
|
||||||
if (!stdout || typeof stdout.write !== 'function') {
|
if (!stdout || typeof stdout.write !== 'function') {
|
||||||
throw new errors.TypeError('ERR_CONSOLE_WRITABLE_STREAM', 'stdout');
|
throw new ERR_CONSOLE_WRITABLE_STREAM('stdout');
|
||||||
}
|
}
|
||||||
if (!stderr) {
|
if (!stderr) {
|
||||||
stderr = stdout;
|
stderr = stdout;
|
||||||
} else if (typeof stderr.write !== 'function') {
|
} else if (typeof stderr.write !== 'function') {
|
||||||
throw new errors.TypeError('ERR_CONSOLE_WRITABLE_STREAM', 'stderr');
|
throw new ERR_CONSOLE_WRITABLE_STREAM('stderr');
|
||||||
}
|
}
|
||||||
|
|
||||||
var prop = {
|
var prop = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user