@thi.ng/transducers
Version:
Collection of ~170 lightweight, composable transducers, reducers, generators, iterators for functional data transformations
15 lines • 348 B
TypeScript
import type { IObjectOf } from "@thi.ng/api";
/**
* Iterator which yields all values of given object's own properties
* (Similar to `Object.values()`).
*
* @remarks
* See also:
*
* - {@link keys}
* - {@link pairs}
*
* @param x -
*/
export declare function vals<T>(x: IObjectOf<T>): IterableIterator<T>;
//# sourceMappingURL=vals.d.ts.map