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.
 
Sven Slootweg eedda1a465 0.1.1 3 years ago
.gitignore Initial commit 5 years ago
README.md Update to new name 3 years ago
index.js Initial commit 5 years ago
package.json 0.1.1 3 years ago

README.md

@promistream/propagate-peek

A simple peek handler for Promistreams that just passes on an incoming peek request to the direct upstream.

Example:

"use strict";

const propagateAbort = require("@promistream/propagate-abort");
const propagatePeek = require("@promistream/propagate-peek");

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
	}
};