drop unnecessary check, because `typeof(null)` already is "object", excluded in the first guard

master
Trent Mick 2016-10-18 13:36:33 -07:00
parent 049f178806
commit 06dbebd168
1 changed files with 2 additions and 2 deletions

View File

@ -967,8 +967,8 @@ function mkLogEmitter(minLevel) {
} else {
msgArgs = Array.prototype.slice.call(args, 1);
}
} else if (typeof (args[0]) !== 'object' && args[0] !== null ||
Array.isArray(args[0])) {
} else if (typeof (args[0]) !== 'object' ||
Array.isArray(args[0])) {
// `log.<level>(msg, ...)`
fields = null;
msgArgs = Array.prototype.slice.call(args);