Skip to content

Instantly share code, notes, and snippets.

@jwulf
Last active February 26, 2020 01:41
Show Gist options
  • Select an option

  • Save jwulf/57634fe589b39b06f6a9f5c90373566f to your computer and use it in GitHub Desktop.

Select an option

Save jwulf/57634fe589b39b06f6a9f5c90373566f to your computer and use it in GitHub Desktop.
const GlobalMemberStore = (() => {
let _members = []
return {
getMember: id => {
const member = _members.filter(m => m.id === id)
return member.length === 1 ?
{ found: true, member: {...member[0]}} :
{ found: false, member: undefined }
}
}
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment