fix 'make check'
This commit is contained in:
parent
7c0b566e63
commit
4009692cdb
1 changed files with 1 additions and 1 deletions
|
@ -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];
|
||||
|
|
Loading…
Reference in a new issue