Home | History | Annotate | Download | only in webkit

Lines Matching refs:Array

28 function toObject(array) {
30 for (var i in array)
31 o[i] = array[i];
32 o.length = array.length;
33 o.reduce = Array.prototype.reduce;
36 function toUnorderedObject(array) {
39 for (var i in array)
42 o[props[i]] = array[props[i]];
43 o.length = array.length;
44 o.reduce = Array.prototype.reduce;