Created
October 25, 2016 18:36
-
-
Save webpapaya/2a891233e711dbb7e4e8412b99d105ce to your computer and use it in GitHub Desktop.
This file contains hidden or 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
const waitAtLeast1Second = waitAtLeast(1); | |
const apiCall = Promise.resolve('my api data'); | |
Promise.resolve() | |
.then(waitAtLeast1Second(apiCall)) | |
.then((data) => data === 'my api data'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment