Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@filerobot/utils / lib / isThumbnailLocallySupported.js
Size: Mime:
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;
}