Skip to main content
Module

x/rambda/source/assoc.js

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