Every line of 'how to fix object object' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.
25 function fixArrays(obj){ 26 var l = Object.keys(obj); 27 var ret = []; 28 if (l.length == l.filter(function(e) { 29 return e.match(/^\d+$/) 30 }).length && l.length > 0) { 31 l.forEach(function(k){ 32 ret.push(obj[k]) 33 }) 34 return ret; 35 } else { 36 return false; 37 } 38 }