Bases filters: Short-circuit logic used for efficiency?

Do filters in Bases apply short-circuit logic evaluation? In other words, for a list of conditions where “all of the following are true” (AND) is it faster to check for file.hasProperty("contributors") first before contributors.contains("Jane Doe") so the latter is not unnecessarily processed if the former is false?