Update JS snapshot to version 5.3.0-dev (via coho)

This commit is contained in:
Steve Gill 2016-07-26 14:57:29 -07:00
parent f33f352501
commit 74ae6651c8

View File

@ -1,5 +1,5 @@
// Platform: android
// 2fd4bcb84048415922d13d80d35b8d1668e8e150
// d403ce434788ffe1937711d6ebcbcc837fcbcb14
/*
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
@ -2083,7 +2083,7 @@ utils.clone = function(obj) {
retVal = {};
for(i in obj){
if(!(i in retVal) || retVal[i] != obj[i]) {
if((!(i in retVal) || retVal[i] != obj[i]) && typeof obj[i] != 'undefined') {
retVal[i] = utils.clone(obj[i]);
}
}