UNPKG

@thi.ng/transducers

Version:

Collection of ~170 lightweight, composable transducers, reducers, generators, iterators for functional data transformations

14 lines 292 B
/** * Iterator which yields all names of given object's own properties * (Similar to `Object.keys()`). * * @remarks * See also: * * - {@link pairs} * - {@link vals} * * @param x - */ export declare function keys(x: any): IterableIterator<string>; //# sourceMappingURL=keys.d.ts.map