This shouldn't need the call parens for the `.filter()` calls: ``` allowedKeywords = if allow? allKeywords.filter((keyword) -> keyword in allow) else allKeywords.filter((keyword) -> keyword not in disallow) ```
This shouldn't need the call parens for the
.filter()calls: