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 e4432cea8b 0.1.7 3 years ago
.gitignore Initial commit 5 years ago
README.md Fix missed name replacement 3 years ago
index.js Swap around abort argument order 3 years ago
package.json 0.1.7 3 years ago

README.md

@promistream/propagate-abort

A simple abort handler for Promistreams that just passes on an incoming abort notification 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
	}
};