Advertisement
Guest User

Untitled

a guest
May 24th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function isNewFilesSizeOverbound(attachFiles, limit) {
  2.   var filesSize = attachFiles.reduce(function(acc, file) {
  3.     return acc + file.size;
  4.   }, 0);
  5.  
  6.   return filesSize > limit;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement