mirror of
https://github.com/strapi/strapi.git
synced 2025-08-18 05:37:10 +00:00
14 lines
338 B
JavaScript
14 lines
338 B
JavaScript
![]() |
import { pick } from 'lodash';
|
||
|
|
||
|
const formatFileForEditing = file => {
|
||
|
return {
|
||
|
file: {
|
||
|
...pick(file, ['size', 'ext', 'width', 'height', 'url', 'mime']),
|
||
|
created_at: file.created_at || file.createdAt,
|
||
|
},
|
||
|
fileInfo: pick(file, ['alternativeText', 'caption', 'name']),
|
||
|
};
|
||
|
};
|
||
|
|
||
|
export default formatFileForEditing;
|