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