UNPKG

select-lnd

Version:
13 lines (10 loc) 286 B
function convertToIdAnLable(arr, keyOne, keyTwo = "") { const result = arr.map((object) => { return { id: object.id, label: object[keyOne] + " " + (keyTwo == "" ? "" : object[keyTwo]), }; }); return result; } module.exports = convertToIdAnLable;