arrow.js 373 B

1234567891011121314
  1. function f() {
  2. const appEntitys = getAppEntitys(loadObject).filter(
  3. entity => entity && entity.isInstallAvailable() && !entity.isQueue() && entity.isDisabled()
  4. )
  5. }
  6. function f() {
  7. const appEntitys = getAppEntitys(loadObject).map(
  8. entity => entity && entity.isInstallAvailable() && !entity.isQueue() && entity.isDisabled() && {
  9. id: entity.id
  10. }
  11. )
  12. }