es-toolkit 1.22.0-dev.705 → 1.22.0-dev.708

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7,7 +7,7 @@ const promise_index = require('../_chunk/index-BGZDR9.js');
7
7
  const flowRight$1 = require('../_chunk/flowRight-DD5Qyk.js');
8
8
  const range = require('../_chunk/range-BXlMmn.js');
9
9
  const randomInt = require('../_chunk/randomInt-CF7bZK.js');
10
- const isObjectLike = require('../_chunk/isObjectLike-BzGQPE.js');
10
+ const isObjectLike = require('../_chunk/isObjectLike-aywuSF.js');
11
11
  const isPlainObject$1 = require('../_chunk/isPlainObject-DgrsU7.js');
12
12
  const isWeakSet$1 = require('../_chunk/isWeakSet-CsTXLi.js');
13
13
  const pad$1 = require('../_chunk/pad-BWiShN.js');
package/dist/index.js CHANGED
@@ -11,7 +11,7 @@ const range = require('./_chunk/range-BXlMmn.js');
11
11
  const randomInt = require('./_chunk/randomInt-CF7bZK.js');
12
12
  const math_index = require('./math/index.js');
13
13
  const object_index = require('./object/index.js');
14
- const isObjectLike = require('./_chunk/isObjectLike-BzGQPE.js');
14
+ const isObjectLike = require('./_chunk/isObjectLike-aywuSF.js');
15
15
  const isWeakSet = require('./_chunk/isWeakSet-CsTXLi.js');
16
16
  const predicate_index = require('./predicate/index.js');
17
17
  const isPlainObject = require('./_chunk/isPlainObject-DgrsU7.js');
@@ -2,7 +2,7 @@
2
2
 
3
3
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
4
4
 
5
- const isObjectLike = require('../_chunk/isObjectLike-BzGQPE.js');
5
+ const isObjectLike = require('../_chunk/isObjectLike-aywuSF.js');
6
6
 
7
7
  function omit(obj, keys) {
8
8
  const result = { ...obj };
@@ -11,7 +11,7 @@ function merge(target, source) {
11
11
  target[key] = merge(targetValue, sourceValue);
12
12
  }
13
13
  else {
14
- target[key] = [...sourceValue];
14
+ target[key] = merge([], sourceValue);
15
15
  }
16
16
  }
17
17
  else if (isPlainObject(sourceValue)) {
@@ -19,7 +19,7 @@ function merge(target, source) {
19
19
  target[key] = merge(targetValue, sourceValue);
20
20
  }
21
21
  else {
22
- target[key] = { ...sourceValue };
22
+ target[key] = merge({}, sourceValue);
23
23
  }
24
24
  }
25
25
  else if (targetValue === undefined || sourceValue !== undefined) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "es-toolkit",
3
3
  "description": "A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.",
4
- "version": "1.22.0-dev.705+63302ce0",
4
+ "version": "1.22.0-dev.708+8a518af4",
5
5
  "homepage": "https://es-toolkit.slash.page",
6
6
  "bugs": "https://github.com/toss/es-toolkit/issues",
7
7
  "repository": {