Created
June 22, 2014 18:27
-
-
Save up1/135127290bab4cf8f44b to your computer and use it in GitHub Desktop.
Demo :: My Promise
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Up1 = function() { | |
var State = { | |
PENDING: 0, | |
FULFILLED: 1, | |
REJECTED: 2 | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment