1
0
mirror of https://github.com/titanscouting/tra-analysis.git synced 2025-04-04 09:53:26 +00:00
2019-01-06 13:14:45 -06:00

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)
}
}
}