Skip to content

Instantly share code, notes, and snippets.

@atishay
Created April 6, 2019 16:29
Show Gist options
  • Select an option

  • Save atishay/0c0836e2244eac21c8ad1230b762379c to your computer and use it in GitHub Desktop.

Select an option

Save atishay/0c0836e2244eac21c8ad1230b762379c to your computer and use it in GitHub Desktop.
let data = null;
function get(cb) {
if (data) {
cb(data);
} else {
callbacks.push(cb);
}
if (callbacks.length === 1) {
...
data = response;
callbacks.forEach(cb => cb(data));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment