blob: ec095dcbfb3de59b2bed6b939d35c7741647195f [file] [log] [blame] [edit]
import { curry } from './curry.js'
function assocFn(
prop, newValue, obj
){
return Object.assign(
{}, obj, { [ prop ] : newValue }
)
}
export const assoc = curry(assocFn)