Returns a Stream that yields the values of the specified object.
Type of items in the Stream.
Object to create the Stream from.
Stream that yields the values of the specified object.
const result = values({ a: 1, b: 2 });console.log([...result]); // [1, 2] Copy
const result = values({ a: 1, b: 2 });console.log([...result]); // [1, 2]
Returns a Stream that yields the values of the specified object.