apps.websight-package-manager.web-resources.utils.PackageUtil.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of websight-package-manager-view Show documentation
Show all versions of websight-package-manager-view Show documentation
Package Manager View module is responsible for view part of Package Manager.
The newest version!
export const isPackageBuilt = ({
size,
buildCount
}) => {
return size || buildCount > 0;
};
export const isPackageInstalled = ({
status = {}
}) => {
return status.installation;
};
export const isPackageModified = ({
status = {}
}) => {
return status.modification;
};