| 1234567891011121314151617 |
- import Promise from './promise';
- /**
- This is a convenient alias for `RSVP.Promise.resolve`.
- @method resolve
- @static
- @for RSVP
- @param {*} value value that the returned promise will be resolved with
- @param {String} label optional string for identifying the returned promise.
- Useful for tooling.
- @return {Promise} a promise that will become fulfilled with the given
- `value`
- */
- export default function resolve(value, label) {
- return Promise.resolve(value, label);
- }
|