UNPKG

strapi-plugin-migrate

Version:
12 lines (11 loc) 231 B
export const updateObjectInArrayByType = (array, objectChanges) => { return array.map(obj => { if (obj.type !== objectChanges.type) { return obj; } return { ...obj, ...objectChanges, }; }); };