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 260258342f Migrate to error-chain 4 years ago
.gitignore Initial commit 4 years ago
README.md Initial commit 4 years ago
example.js Migrate to error-chain 4 years ago
index.js Migrate to error-chain 4 years ago
package.json Migrate to error-chain 4 years ago
yarn.lock Migrate to error-chain 4 years ago

README.md

@ppstreams/end-of-stream-marker

A simple custom error type for marking the end of a ppstreams stream. You'd usually only need this module when you're implementing a source stream.

Example

An example of producing an EndOfStream marker, from the range-numbers module, which is a source stream that produces numbers within a range:

"use strict";

const simpleSource = require("@ppstreams/simple-source");
const EndOfStream = require("@ppstreams/end-of-stream");

module.exports = function rangeNumbers(start, end, step = 1) {
	let i = start;

	return simpleSource({
		onRequest: () => {
			if (i >= end) {
				throw new EndOfStream();
			} else {
				let number = i;
				i += step;
				return number;
			}
		}
	});
}

API

EndOfStream()

A custom Error constructor, that produces an 'end of stream' marker; that is, a special kind of error to signal that the end of the source stream has been reached, and no further values should be requested.

Takes no arguments.