Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save visualjeff/9f930b39ff7408d5640a7debfd49220a to your computer and use it in GitHub Desktop.
Save visualjeff/9f930b39ff7408d5640a7debfd49220a to your computer and use it in GitHub Desktop.
Promises
//Check to see if promise is already running
if (this.isRunning) { return; }
//Promise is success, but we need to check on the parent before we make
changes to the parent.
if (this.isDestroyed) { return; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment