( stateSanitizer: StateSanitizer, state: any, stateIdx: number )
| 100 | * Sanitizes given state with given function. |
| 101 | */ |
| 102 | export function sanitizeState( |
| 103 | stateSanitizer: StateSanitizer, |
| 104 | state: any, |
| 105 | stateIdx: number |
| 106 | ) { |
| 107 | return stateSanitizer(state, stateIdx); |
| 108 | } |
| 109 | |
| 110 | /** |
| 111 | * Read the config and tell if actions should be filtered |
no test coverage detected