6 lines
156 B
JavaScript
6 lines
156 B
JavaScript
|
module.exports = (fileInfo, getResult) => {
|
||
|
fileInfo.fileName = getResult.file_name;
|
||
|
fileInfo.filePath = getResult.download_path;
|
||
|
return fileInfo;
|
||
|
};
|