Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | 1x 1x 2x 2x | import { purry } from './purry'; /** * Sets the `value` at `prop` of `object`. * @param obj the target method * @param prop the property name * @param value the value to set * @signature * R.set(obj, prop, value) * @example * R.set({ a: 1 }, 'a', 2) // => { a: 2 } * @data_first * @category Object */ export function set<T, K extends keyof T>(obj: T, prop: K, value: T[K]): T; /** * Sets the `value` at `prop` of `object`. * @param prop the property name * @param value the value to set * @signature * R.set(prop, value)(obj) * @example * R.pipe({ a: 1 }, R.set('a', 2)) // => { a: 2 } * @data_last * @category Object */ export function set<T, K extends keyof T>(prop: K, value: T[K]): (obj: T) => T; export function set() { return purry(_set, arguments); } function _set(obj: any, prop: string, value: any) { return { ...obj, [prop]: value, }; } |