Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- iteration_proposals.forEach((local) => {
- proposals.forEach((global) => {
- if(local.sign == global.sign) {
- global.terms.push(local.terms[0]);
- count_inserted_elements++;
- } else {
- others_props.push(local);
- count_new_elements++;
- }
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment