mirror of
https://github.com/strapi/strapi.git
synced 2025-08-18 13:45:25 +00:00
6 lines
137 B
JavaScript
6 lines
137 B
JavaScript
const getFilesToDownload = files => {
|
|
return files.filter(file => file.isDownloading === true);
|
|
};
|
|
|
|
export default getFilesToDownload;
|