Sha256: 014c864792a81b3cbae90f2e1752066a04ddd238a23300c812a9c9e22ad79075
Contents?: true
Size: 422 Bytes
Versions: 14
Compression:
Stored size: 422 Bytes
Contents
/** * Matches when the observable sequence has an available value and projects the value. * * @param {Function} selector Selector that will be invoked for values in the source sequence. * @returns {Plan} Plan that produces the projected values, to be fed (with other plans) to the when operator. */ observableProto.thenDo = function (selector) { return new Pattern([this]).thenDo(selector); };
Version data entries
14 entries across 7 versions & 1 rubygems