UNPKG

@newdash/newdash

Version:

javascript/typescript utility library

35 lines (34 loc) 1.33 kB
import { AccCollectionIteratee, Collection } from "./types"; /** * An alternative to `reduce` this method transforms `object` to a new * `accumulator` object which is the result of running each of its own * enumerable string keyed properties thru `iteratee`, with each invocation * potentially mutating the `accumulator` object. If `accumulator` is not * provided, a new object with the same `[[Prototype]]` will be used. The * iteratee is invoked with four arguments: (accumulator, value, key, object). * Iteratee functions may exit iteration early by explicitly returning `false`. * * @since 5.11.0 * @category Object * @param object The object to iterate over. * @param iteratee The function invoked per iteration. * @param accumulator The custom accumulator value. * @returns Returns the accumulated value. * @see [[reduce]], [[reduceRight]] * @example * * ```js * transform([2, 3, 4], (result, n) => { * result.push(n *= n) * return n % 2 == 0 * }, []) * // => [4, 9] * * transform({ 'a': 1, 'b': 2, 'c': 1 }, (result, value, key) => { * (result[value] || (result[value] = [])).push(key) * }, {}) * // => { '1': ['a', 'c'], '2': ['b'] } * ``` */ export declare function transform<T>(object: Collection<T>, iteratee: AccCollectionIteratee<T>, accumulator: any): any; export default transform;