Function mapValues

  • Transform the values of the input object using the mapper and return the mapped object. The returned object will be the same as the input if inPlace is truthy.

    Parameters

    • object: any
    • mapper: ICallable
    • Optional inPlace: boolean

    Returns any

    Example

    import { mapValues } from 'apption'
    const obj = mapValues({ a: 1, b: 2, c: 3 }, (k, v) => v * 3);
    console.log(obj) // { a: 3, b: 6, c: 9 }