mirror of
https://github.com/nodejs/node.git
synced 2025-05-16 04:04:17 +00:00

Closes: https://github.com/nodejs/node/pull/16280 PR-URL: https://github.com/nodejs/node/pull/16509 Fixes: https://github.com/nodejs/node/issues/14161 Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Michaël Zasso <targos@protonmail.com>
15 lines
309 B
JavaScript
15 lines
309 B
JavaScript
'use strict'
|
|
module.exports = Base => class extends Base {
|
|
warn (msg, data) {
|
|
if (!this.strict)
|
|
this.emit('warn', msg, data)
|
|
else if (data instanceof Error)
|
|
this.emit('error', data)
|
|
else {
|
|
const er = new Error(msg)
|
|
er.data = data
|
|
this.emit('error', er)
|
|
}
|
|
}
|
|
}
|