Repository URL to install this package:
|
Version:
3.12.20 ▾
|
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;