/** * @short * Creates an iterable *from* another iterable. * * @categories * static generator * * @description * Given an iterable, returns the exact same iterable (re-yielding all the values). * Rarely useful on its own, but can be helpful as an identity iterable transformer. * * @since * 0.0.1 * * @parameter * iterable * Iterable * * @returns * Iterable * * @example * j.From([1, 2, 3]) * // => [1, 2, 3] */ export declare function From(iterable: Iterable): Iterable;