Guest User

Untitled

a guest
Jul 16th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. import { State } from "../../state";
  2.  
  3. export function filterOnTextAction (state: State, filterOn: string) {
  4. const newState = Object.assign({}, state);
  5. newState.settings.filterOn = filterOn;
  6. return newState;
  7. };
Add Comment
Please, Sign In to add comment