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;
|
return obj;
|
||||||
} else if (Array.isArray(obj)) {
|
} else if (Array.isArray(obj)) {
|
||||||
return obj.slice();
|
return obj.slice();
|
||||||
} else if (typeof obj === 'object') {
|
} else if (typeof (obj) === 'object') {
|
||||||
var copy = {};
|
var copy = {};
|
||||||
Object.keys(obj).forEach(function (k) {
|
Object.keys(obj).forEach(function (k) {
|
||||||
copy[k] = obj[k];
|
copy[k] = obj[k];
|
||||||
|
|
Loading…
Reference in a new issue