Created
May 14, 2017 16:23
-
-
Save javarouka/01ddc00cad091eba3575969f50f606b2 to your computer and use it in GitHub Desktop.
play promise post example
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
function executeBeforeTimeout(thenable, millis) { | |
return Promise.race([ | |
Promise.resolve(thenable), // 혹시 thenable 하지 않더라도, 명시적으로 Promise 로 변경해준다. | |
timeBomb(millis) // 위에 정의한 지연폭탄 | |
]); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment