1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- "use strict";
- // @ts-nocheck
- var __importDefault = (this && this.__importDefault) || function (mod) {
- return (mod && mod.__esModule) ? mod : { "default": mod };
- };
- Object.defineProperty(exports, "__esModule", { value: true });
- const assignValue_js_1 = __importDefault(require("./assignValue.cjs"));
- const castPath_js_1 = __importDefault(require("./castPath.cjs"));
- const isIndex_js_1 = __importDefault(require("./isIndex.cjs"));
- const isObject_js_1 = __importDefault(require("./isObject.cjs"));
- const toKey_js_1 = __importDefault(require("./toKey.cjs"));
- /**
- * 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`.
- */
- function baseSet(object, path, value, customizer) {
- if (!(0, isObject_js_1.default)(object)) {
- return object;
- }
- path = (0, castPath_js_1.default)(path, object);
- const length = path.length;
- const lastIndex = length - 1;
- let index = -1;
- let nested = object;
- while (nested != null && ++index < length) {
- const key = (0, toKey_js_1.default)(path[index]);
- let newValue = value;
- if (index !== lastIndex) {
- const objValue = nested[key];
- newValue = customizer ? customizer(objValue, key, nested) : undefined;
- if (newValue === undefined) {
- newValue = (0, isObject_js_1.default)(objValue)
- ? objValue
- : (0, isIndex_js_1.default)(path[index + 1])
- ? []
- : {};
- }
- }
- (0, assignValue_js_1.default)(nested, key, newValue);
- nested = nested[key];
- }
- return object;
- }
- exports.default = baseSet;
|