es-toolkit 1.21.0-dev.671 → 1.21.0-dev.673
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.
- package/dist/_chunk/{toMerged-DVBECd.js → toMerged-2WPeoI.js} +1 -1
- package/dist/browser.global.js +1 -1
- package/dist/browser.global.js.map +1 -1
- package/dist/compat/index.js +1 -1
- package/dist/function/index.js +1 -0
- package/dist/function/throttle.mjs +1 -0
- package/dist/index.js +1 -1
- package/dist/object/cloneDeep.mjs +1 -1
- package/dist/object/index.js +1 -1
- package/package.json +1 -1
package/dist/compat/index.js
CHANGED
|
@@ -7,7 +7,7 @@ const promise_index = require('../_chunk/index-BGZDR9.js');
|
|
|
7
7
|
const flow = require('../_chunk/flow-Au34h2.js');
|
|
8
8
|
const range = require('../_chunk/range-BXlMmn.js');
|
|
9
9
|
const randomInt = require('../_chunk/randomInt-CF7bZK.js');
|
|
10
|
-
const toMerged = require('../_chunk/toMerged-
|
|
10
|
+
const toMerged = require('../_chunk/toMerged-2WPeoI.js');
|
|
11
11
|
const isPlainObject$1 = require('../_chunk/isPlainObject-BIekvL.js');
|
|
12
12
|
const isWeakSet$1 = require('../_chunk/isWeakSet-clQklw.js');
|
|
13
13
|
const pad$1 = require('../_chunk/pad-Cw2pvt.js');
|
package/dist/function/index.js
CHANGED
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 toMerged = require('./_chunk/toMerged-
|
|
14
|
+
const toMerged = require('./_chunk/toMerged-2WPeoI.js');
|
|
15
15
|
const isWeakSet = require('./_chunk/isWeakSet-clQklw.js');
|
|
16
16
|
const predicate_index = require('./predicate/index.js');
|
|
17
17
|
const isPlainObject = require('./_chunk/isPlainObject-BIekvL.js');
|
|
@@ -64,7 +64,7 @@ function cloneDeepImpl(obj, stack = new Map()) {
|
|
|
64
64
|
return obj.slice(0);
|
|
65
65
|
}
|
|
66
66
|
if (obj instanceof DataView) {
|
|
67
|
-
const result = new DataView(obj.buffer.slice(0));
|
|
67
|
+
const result = new DataView(obj.buffer.slice(0), obj.byteOffset, obj.byteLength);
|
|
68
68
|
stack.set(obj, result);
|
|
69
69
|
copyProperties(result, obj, stack);
|
|
70
70
|
return result;
|
package/dist/object/index.js
CHANGED
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.21.0-dev.
|
|
4
|
+
"version": "1.21.0-dev.673+1d5fa878",
|
|
5
5
|
"homepage": "https://es-toolkit.slash.page",
|
|
6
6
|
"bugs": "https://github.com/toss/es-toolkit/issues",
|
|
7
7
|
"repository": {
|