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

just

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

Creates an observable that emits a set of values.

function just<T>(...vs: T[]): Observable<T>;
§
just<T>(...vs: T[]): Observable<T>
[src]

§Type Parameters

§Parameters

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

Values to emit.

§Return Type

§

New observable that emits the given values before ending.