Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
It is very useful when writing a function that returns a promise to be able to return a value instead, in case you already have the value available. This way the caller can always treat the return value as a promise. So I've added a few "static methods" to the
RSVP
object that facilitate easier handling of already-resolved values.RSVP.when
This function is the static equivalent of
Promise.prototype.then
. You can pass it a promise or a value, along with the usualdone
andfail
callbacks.RSVP.resolve/reject
These are convenience methods for generating an already resolved/rejected promise for a given value.
RSVP.all
I also made a slight change to
RSVP.all
which goes along with these changes. It now knows how to resolve values as well as promises.