This commit is contained in:
Alexey Kasyanchuk
2018-11-11 23:59:38 +03:00
parent 6afe85798a
commit aa75d75448
13 changed files with 129 additions and 129 deletions

View File

@ -4,7 +4,7 @@ module.exports = (filesData) => {
let path = filesData.path.split('\n');
let size = filesData.size.split('\n');
return path.map((pathString, index) => Object.assign({}, filesData, {
path: pathString,
size: parseInt(size[index])