You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
601 B
Markdown

# @promistream/propagate-peek
5 years ago
A simple peek handler for [Promistreams](https://promistream.cryto.net/) that just passes on an incoming peek request to the direct upstream.
5 years ago
## Example:
```js
"use strict";
const propagateAbort = require("@promistream/propagate-abort");
const propagatePeek = require("@promistream/propagate-peek");
5 years ago
module.exports = function makeStream() {
return {
description: `pass-through stream`,
read: (source) => {
/* This example stream just passes through the upstream value */
return source.read();
},
abort: propagateAbort,
peek: propagatePeek
}
};
```