Creates a new Enumerable from the input Iterable.
The object to create an Enumerable from.
A new Enumerable.
const obj = { foo: 'bar' };const enumerable = from(obj); Copy
const obj = { foo: 'bar' };const enumerable = from(obj);
TSource The type of the object.
Creates a new Enumerable from the input Iterable.