Every line of 'lodash array to 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.
5 function objectToArray(object) { 6 return object.arr; 7 }
872 function arrayToObject(arr, getKey, getValue) { 873 return arr.reduce(function(acc, val) { 874 acc[getKey(val)] = getValue(val); 875 return acc; 876 }, {}); 877 }
118 export function toArray(obj: any): any[] { 119 if (isNone(obj)) { 120 return []; 121 } else { 122 return Array.isArray(obj) ? obj : [obj]; 123 } 124 }
58 function arrayToObject(array) { 59 return Object.assign(...array.map(([key, value]) => ({ [key]: value }))); 60 }
9 function arrayify(o) { 10 if (Array.isArray(o)) { 11 return o; 12 } else { 13 return [o]; 14 } 15 }
6 function arrayify (o) { 7 if (Array.isArray(o)) { 8 return o 9 } else { 10 return [o] 11 } 12 }
9 export function toArray(v?: any): Array { 10 if (isArray(v) || isUndefined(v) || isNull(v)) { 11 return v; 12 } 13 else { 14 return [v]; 15 } 16 }
307 function objectify(value) { 308 if (typeof value === 'string') { 309 return { 310 task: value 311 }; 312 } 313 if (typeof value === 'function') { 314 return { 315 task: value 316 }; 317 } 318 if (_.isPlainObject(value)) { 319 return value; 320 } 321 // array etc. 322 return { 323 task: value 324 }; 325 }
1 export function arrayify(obj: T | T[]): T[] { 2 return Array.isArray(obj) ? obj : [obj]; 3 }
14 function isArray(o) { 15 return Object.prototype.toString.call(o) === '[object Array]'; 16 }