Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
themeEclipse
languagejavascript
linenumberstrue
function iHave(structure) {
  var list = enumStruct(me,structure);
  return (list.length && list.some(function(building) {
    return building.status == BUILT;
  });
}

...