Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

endWith

import { endWith } from "https://raw.githubusercontent.com/surma/observables-with-streams/28c55be6d855780c677fd1f4ba975f4d3144891d/src/index.ts";

Returns a Transform that emits the items specified as arguments after te source observable ends.

function endWith<T>(...vs: T[]): Transform<T>;
§
endWith<T>(...vs: T[]): Transform<T>
[src]

§Type Parameters

§Parameters

§
...vs: T[] optional
[src]

Values to emit after the source observable ends.

§Return Type

§

Transform that emits the items of vs after the source observables ends.