UNPKG

moy-fp

Version:
15 lines (12 loc) 221 B
import curry from '../Function/curry' /** * k -> v -> {k: v} -> {k: v} */ const assoc = curry( (key, value, obj) => { const result = {...obj} result[key] = value return result } ) export default assoc