Skip to content

Instantly share code, notes, and snippets.

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