From 4009692cdbe1e6dfd32f930f8a0f68619cb3ce68 Mon Sep 17 00:00:00 2001 From: Trent Mick Date: Thu, 15 Jan 2015 22:19:59 -0800 Subject: [PATCH] fix 'make check' --- lib/bunyan.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bunyan.js b/lib/bunyan.js index 3f0bf5c..fdc250e 100644 --- a/lib/bunyan.js +++ b/lib/bunyan.js @@ -63,7 +63,7 @@ function objCopy(obj) { return obj; } else if (Array.isArray(obj)) { return obj.slice(); - } else if (typeof obj === 'object') { + } else if (typeof (obj) === 'object') { var copy = {}; Object.keys(obj).forEach(function (k) { copy[k] = obj[k];