mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
11 lines
287 B
JavaScript
11 lines
287 B
JavaScript
export default function getFileItem(file, fileList) {
|
|
let matchWay = (!file.uid) ? 'byName' : 'byUid';
|
|
let target = fileList.filter((item) => {
|
|
if (matchWay === 'byName') {
|
|
return item.name === file.name;
|
|
}
|
|
return item.uid === file.uid;
|
|
})[0];
|
|
return target;
|
|
}
|