Sha256: fdd973a9d3cb4190906be2ef1132492d06803337df65de304d2bdf1a23f4bea7
Contents?: true
Size: 299 Bytes
Versions: 26
Compression:
Stored size: 299 Bytes
Contents
import type { ObjMap, ReadOnlyObjMap } from './ObjMap'; /** * Creates an object map with the same keys as `map` and values generated by * running each value of `map` thru `fn`. */ export declare function mapValue<T, V>( map: ReadOnlyObjMap<T>, fn: (value: T, key: string) => V, ): ObjMap<V>;
Version data entries
26 entries across 26 versions & 1 rubygems