@newdash/newdash
Version:
javascript/typescript utility library
12 lines (11 loc) • 372 B
TypeScript
export default baseAssignValue;
/**
* The base implementation of `assignValue` and `assignMergeValue` without
* value checks.
*
* @private
* @param {Object} object The object to modify.
* @param {string} key The key of the property to assign.
* @param {*} value The value to assign.
*/
declare function baseAssignValue(object: any, key: string, value: any): void;