UNPKG

react-compress-dist

Version:

Easy way to compress your JS bundle when you compile build folder

12 lines (10 loc) 268 B
const fs = require('fs'); const getCombinedSize = (arrayOfFiles:any) => { let totalSize = 0; arrayOfFiles.forEach((filePath:any) => { totalSize += fs.statSync(filePath).size; }); return totalSize; }; module.exports = getCombinedSize; export {}