fix 'make check'

master
Trent Mick 2015-01-15 22:19:59 -08:00
parent 7c0b566e63
commit 4009692cdb
1 changed files with 1 additions and 1 deletions

View File

@ -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];