12 lines
431 B
TypeScript
12 lines
431 B
TypeScript
/**
|
|
* The base implementation of `set`.
|
|
*
|
|
* @private
|
|
* @param {Object} object The object to modify.
|
|
* @param {Array|string} path The path of the property to set.
|
|
* @param {*} value The value to set.
|
|
* @param {Function} [customizer] The function to customize path creation.
|
|
* @returns {Object} Returns `object`.
|
|
*/
|
|
declare function baseSet(object: any, path: any, value: any, customizer: any): any;
|
|
export default baseSet;
|