Thanks to visit codestin.com Credit goes to rob893.github.io
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.