All Downloads are FREE. Search and download functionalities are using the official Maven repository.

apps.websight-package-manager.web-resources.utils.PackageUtil.js Maven / Gradle / Ivy

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;
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy