Sha256: 17679dc71b23d4df85ddad4ec921e29fd420fe0a88e80f2b506f80a9b1a8a002
Contents?: true
Size: 486 Bytes
Versions: 4
Compression:
Stored size: 486 Bytes
Contents
import Promise from './promise'; /** This is a convenient alias for `RSVP.Promise.resolve`. @method resolve @static @for RSVP @param {Any} 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); }
Version data entries
4 entries across 4 versions & 2 rubygems