barnard59

barnard59-base v1.1.0

Linked Data pipelines

Operations

In this section you will find the list of all defined operations for this barnard59 package.

Combine

Combines multiple streams to a single stream connecting them in the given order.

Loading...

Concat

Concatenates the content of the given streams to a single stream.

Loading...

Concat (Object)

Concatenates the content of the given streams to a single stream.

Loading...

Filter

Forwards incoming chunks if they pass the filter function.

Loading...

Flatten

Separates incoming arrays into their elements and emits each element as a single chunk.

Loading...

For Each

Calls a sub pipeline for each incoming chunk.

Loading...

Glob

Match files using the given pattern and emits each filename as a single chunk.

Loading...

Parse JSON

Converts each chunk to an object by calling JSON.parse().

Loading...

Serialize JSON

Converts each chunk to a JSON string by calling JSON.stringify().

Loading...

Limit

Limits the amount of forwarded chunks and discards any chunks after reaching the limit.

Loading...

Map

Converts each chunk using the given function.

Loading...

/dev/null

Dummy output stream, just like /dev/null.

Loading...

Offset

Discards all chunks before the given offset.

Loading...

stdout

Writes the incoming data to stdout and also forwards the data to the stream output.

Loading...

To String

Converts each chunk to a string by calling .toString().

Loading...