UNPKG

quxapp

Version:

Qux App is a lightweight module that contains many functions for array operations, sequences, and statistics. Qux App makes writing JavaScript easier and quicker every day!

15 lines (13 loc) 267 B
function combine(list) { let snow = { } for (i = 0; i < list.length; i++) { for (const [key, value] of Object.entries(list[i])) { if (snow[key] === undefined) { snow[key] = value } } } return snow } module.exports = combine