Last active
July 16, 2019 17:54
-
-
Save derek-adair/79760c0435360c9523df0558769331ac to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let | |
newState = Object.assign({}, state), | |
library_clips = newState.library[action.library_owner].clips, | |
clip_index = library_clips.indexOf(`${action.clip.user}/${action.clip.name}`) | |
; | |
library_clips.splice(clip_index, 1) | |
return newState |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment