We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcf5c26 commit 94b3d31Copy full SHA for 94b3d31
src/FilterMonitor.js
@@ -11,7 +11,7 @@ export default class FilterMonitor extends Component {
11
};
12
13
isFiltered(actionType) {
14
- var type = actionType || '';
+ const type = actionType || '';
15
return (
16
this.props.whitelist && type.match(this.props.whitelist.join('|')) ||
17
this.props.blacklist && !type.match(this.props.blacklist.join('|'))
0 commit comments