Skip to content

Instantly share code, notes, and snippets.

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