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