Skip to content

Instantly share code, notes, and snippets.

@jwulf
Last active February 26, 2020 01:41
Show Gist options
  • Save jwulf/bb7572767d92c80257a32116feed39eb to your computer and use it in GitHub Desktop.
Save jwulf/bb7572767d92c80257a32116feed39eb to your computer and use it in GitHub Desktop.
const GlobalMemberStore = (() => {
let _members = []
return {
updateMember: update => (_members = _members.map(m => m.id === update.id ?
{...update} : m))
}
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment