Returns a Stream that yields the specified entries.
Type of items in the Stream.
Rest
Entries to create the Stream from.
Stream that yields the specified entries.
const result = of(1, 2, 3);console.log([...result]); // [1, 2, 3] Copy
const result = of(1, 2, 3);console.log([...result]); // [1, 2, 3]
Returns a Stream that yields the specified entries.