Repository URL to install this package:
|
Version:
3.12.2 ▾
|
import isImage from './isImage';
import isPhotoshopFile from './isPhotoshopFile';
export default function isThumbnailLocallySupported(file) {
// Checking if we could show a preview for this item or not
if (isImage(file) || isPhotoshopFile(file)) {
return true;
}
return false;
}