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/explorer / lib / utils / getApiPathtype.js
Size: Mime:
var getApiPathType = function getApiPathType(filesUuids, foldersUuids) {
  if (foldersUuids.length === 0) {
    return 'files';
  } else if (filesUuids.length === 0) {
    return 'folders';
  } else {
    return 'objects';
  }
};
export default getApiPathType;