UNPKG

rambda

Version:

Lightweight and faster alternative to Ramda with included TS definitions

14 lines (13 loc) 197 B
import { mapFn } from './map.js' export function addPropToObjects ( property, fn ){ return listOfObjects => mapFn( (obj) => ({ ...(obj), [property]: fn(obj) }), listOfObjects ) }