()
| 39 | }; |
| 40 | |
| 41 | const getChangedMinifiedFiles = async () => { |
| 42 | const changed = await getChangedFiles(); |
| 43 | return changed.filter(file => file.endsWith('.min.js')); |
| 44 | }; |
| 45 | |
| 46 | // https://stackoverflow.com/questions/15900485/correct-way-to-convert-size-in-bytes-to-kb-mb-gb-in-javascript |
| 47 | const formatBytes = (bytes, decimals = 2) => { |
no test coverage detected