Skip to content

Instantly share code, notes, and snippets.

@techiediaries
Created September 25, 2018 20:13
Show Gist options
  • Select an option

  • Save techiediaries/68dd6ca7721b49af739d020a22a650c3 to your computer and use it in GitHub Desktop.

Select an option

Save techiediaries/68dd6ca7721b49af739d020a22a650c3 to your computer and use it in GitHub Desktop.
function simulateAsyncOp(callback){
setTimeout(function () {
callback();
}, 1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment