Skip to content

Commit 43146f9

Browse files
committed
update browser version
1 parent 41d1fd7 commit 43146f9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

dist/react-most.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,7 @@ var _curry1 = require('./internal/_curry1');
275275
*
276276
* R.mergeAll([{foo:1},{bar:2},{baz:3}]); //=> {foo:1,bar:2,baz:3}
277277
* R.mergeAll([{foo:1},{foo:2},{bar:2}]); //=> {foo:2,bar:2}
278+
* @symb R.mergeAll([{ x: 1 }, { y: 2 }, { z: 3 }]) = { x: 1, y: 2, z: 3 }
278279
*/
279280
module.exports = _curry1(function mergeAll(list) {
280281
return _assign.apply(null, [{}].concat(list));
@@ -557,10 +558,10 @@ function actionsAndSinks(sinks, self) {
557558
return x;
558559
};
559560

560-
self.context[INTENT_STREAM].send(f(e));
561+
return self.context[INTENT_STREAM].send(f(e));
561562
},
562563
fromPromise: function fromPromise(p) {
563-
p.then(function (x) {
564+
return p.then(function (x) {
564565
return self.context[INTENT_STREAM].send(x);
565566
});
566567
}

0 commit comments

Comments
 (0)