Open kartamyshev opened 4 years ago
function condervToArr (obj) { const arr = []; for (const key in obj) { arr.push([key, obj[key]]); } return arr; }