Skip to main content
Module

x/rambda/assoc.js

Faster and smaller alternative to Ramda
Go to Latest
File
import { curry } from './curry'
function assocFn( prop, newValue, obj){ return Object.assign( {}, obj, { [ prop ] : newValue } )}
export const assoc = curry(assocFn)