git ssb

2+

cel / scuttlebot.io



Tree: 07de6e0bf8f8051cfea29058496ca70ae04e5c99

Files: 07de6e0bf8f8051cfea29058496ca70ae04e5c99 / tmpl / apis / pull-stream / pull-otherwise.md

485 bytesRaw

pull-otherwise

Read from an alternative source, if the main ended.

Usage

otherwise(alt);

alt - Alternative source stream.

Example

var pull = require("pull-stream");
var otherwise = require("pull-otherwise");

var mainSource = pull.values([1,2,3,4]);
var alternative = pull.values([5,6,7,8,9]);

pull(
  mainSource,
  otherwise(alternative),
  pull.log()
)

install

With npm do:

npm install pull-otherwise

license

MIT

Built with git-ssb-web