(from, to)
| 69 | }; |
| 70 | |
| 71 | const percDiff = (from, to) => { |
| 72 | if (from === to) { |
| 73 | return '0%'; |
| 74 | } |
| 75 | |
| 76 | return `${maybePlus(from, to)}${(100 * (to - from) / (from || to)).toFixed(1)}%`; |
| 77 | }; |
| 78 | |
| 79 | const getSummary = (rows, totalMasterFileSize, totalFileSize) => { |
| 80 | const numFiles = rows.length; |
no test coverage detected