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 / isUploadableFile.js
Size: Mime:
// as uploadStep is a property of the files being uploaded, also id is specificed in the files being uploaded
// cause the files found on backend are using uuid instead of id.
var isUploadableFile = function isUploadableFile() {
  var file = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
  return file ? Boolean(file.uploadStep || file.id) : false;
};
export default isUploadableFile;