Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | 6x 4x 4x 8x 14x 4x | export const UPDATE_ARCHITECTURES = "UPDATE_ARCHITECTURES";
 
export function updateArchitectures(revisions) {
  let archs = [];
 
  revisions.forEach((revision) => {
    archs = archs.concat(revision.architectures);
  });
 
  // make archs unique and sorted
  archs = archs.filter((item, i, ar) => ar.indexOf(item) === i);
 
  return {
    type: UPDATE_ARCHITECTURES,
    payload: {
      architectures: archs,
    },
  };
}
  |