Skip to content

Instantly share code, notes, and snippets.

@perjo927
Created September 8, 2020 07:23
Show Gist options
  • Save perjo927/ccc985569a7c933624988a057cf164d3 to your computer and use it in GitHub Desktop.
Save perjo927/ccc985569a7c933624988a057cf164d3 to your computer and use it in GitHub Desktop.
Make subscriber
export const makeSubscriber = (subscribers) => ({
subscribe(callback) {
subscribers.push(callback);
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment