use includes instead of indexOf

This commit is contained in:
Casper Lamboo 2018-03-19 10:13:01 +01:00
parent 7360cdc85a
commit efb1efe3d9
1 changed files with 2 additions and 4 deletions

View File

@ -41,10 +41,8 @@ const CONTEXT_TOOL_CHANGES = [
];
export default function undoFilter(action, currentState) {
if (INCLUDE.indexOf(action.type) !== -1) return true;
if (ACTION_INCLUDES[action.type] && ACTION_INCLUDES[action.type].indexOf(currentState.d2.tool) !== -1) {
return true;
}
if (INCLUDE.includes(action.type)) return true;
if (ACTION_INCLUDES[action.type] && ACTION_INCLUDES[action.type].includes(currentState.d2.tool)) return true;
if (action.type === actions.CONTEXT_CHANGE_TOOL && CONTEXT_TOOL_CHANGES.includes(action.tool)) return true;
return false;