es-toolkit 1.17.0-dev.510 → 1.17.0-dev.511

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.
@@ -13,6 +13,7 @@ export { groupBy } from '../array/groupBy.mjs';
13
13
  export { intersection } from '../array/intersection.mjs';
14
14
  export { intersectionBy } from '../array/intersectionBy.mjs';
15
15
  export { intersectionWith } from '../array/intersectionWith.mjs';
16
+ export { join } from '../array/join.mjs';
16
17
  export { keyBy } from '../array/keyBy.mjs';
17
18
  export { maxBy } from '../array/maxBy.mjs';
18
19
  export { minBy } from '../array/minBy.mjs';
@@ -13,6 +13,7 @@ export { groupBy } from '../array/groupBy.js';
13
13
  export { intersection } from '../array/intersection.js';
14
14
  export { intersectionBy } from '../array/intersectionBy.js';
15
15
  export { intersectionWith } from '../array/intersectionWith.js';
16
+ export { join } from '../array/join.js';
16
17
  export { keyBy } from '../array/keyBy.js';
17
18
  export { maxBy } from '../array/maxBy.js';
18
19
  export { minBy } from '../array/minBy.js';
@@ -2,7 +2,7 @@
2
2
 
3
3
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
4
4
 
5
- const initial = require('../_chunk/initial-Ci2bn_.js');
5
+ const initial = require('../_chunk/initial-L_KfII.js');
6
6
  const promise_index = require('../_chunk/index-BGZDR9.js');
7
7
  const rest$1 = require('../_chunk/rest-Bzm2XK.js');
8
8
  const math_index = require('../math/index.js');
@@ -851,6 +851,7 @@ exports.intersection = initial.intersection;
851
851
  exports.intersectionBy = initial.intersectionBy;
852
852
  exports.intersectionWith = initial.intersectionWith;
853
853
  exports.isSubset = initial.isSubset;
854
+ exports.join = initial.join;
854
855
  exports.keyBy = initial.keyBy;
855
856
  exports.last = initial.last;
856
857
  exports.maxBy = initial.maxBy;
@@ -13,6 +13,7 @@ export { groupBy } from '../array/groupBy.mjs';
13
13
  export { intersection } from '../array/intersection.mjs';
14
14
  export { intersectionBy } from '../array/intersectionBy.mjs';
15
15
  export { intersectionWith } from '../array/intersectionWith.mjs';
16
+ export { join } from '../array/join.mjs';
16
17
  export { keyBy } from '../array/keyBy.mjs';
17
18
  export { maxBy } from '../array/maxBy.mjs';
18
19
  export { minBy } from '../array/minBy.mjs';
package/dist/index.d.mts CHANGED
@@ -18,6 +18,7 @@ export { groupBy } from './array/groupBy.mjs';
18
18
  export { intersection } from './array/intersection.mjs';
19
19
  export { intersectionBy } from './array/intersectionBy.mjs';
20
20
  export { intersectionWith } from './array/intersectionWith.mjs';
21
+ export { join } from './array/join.mjs';
21
22
  export { keyBy } from './array/keyBy.mjs';
22
23
  export { maxBy } from './array/maxBy.mjs';
23
24
  export { minBy } from './array/minBy.mjs';
package/dist/index.d.ts CHANGED
@@ -18,6 +18,7 @@ export { groupBy } from './array/groupBy.js';
18
18
  export { intersection } from './array/intersection.js';
19
19
  export { intersectionBy } from './array/intersectionBy.js';
20
20
  export { intersectionWith } from './array/intersectionWith.js';
21
+ export { join } from './array/join.js';
21
22
  export { keyBy } from './array/keyBy.js';
22
23
  export { maxBy } from './array/maxBy.js';
23
24
  export { minBy } from './array/minBy.js';
package/dist/index.js CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
4
4
 
5
- const initial = require('./_chunk/initial-Ci2bn_.js');
5
+ const initial = require('./_chunk/initial-L_KfII.js');
6
6
  const array_index = require('./array/index.js');
7
7
  const promise_index = require('./_chunk/index-BGZDR9.js');
8
8
  const rest = require('./_chunk/rest-Bzm2XK.js');
@@ -40,6 +40,7 @@ exports.intersection = initial.intersection;
40
40
  exports.intersectionBy = initial.intersectionBy;
41
41
  exports.intersectionWith = initial.intersectionWith;
42
42
  exports.isSubset = initial.isSubset;
43
+ exports.join = initial.join;
43
44
  exports.keyBy = initial.keyBy;
44
45
  exports.last = initial.last;
45
46
  exports.maxBy = initial.maxBy;
package/dist/index.mjs CHANGED
@@ -18,6 +18,7 @@ export { groupBy } from './array/groupBy.mjs';
18
18
  export { intersection } from './array/intersection.mjs';
19
19
  export { intersectionBy } from './array/intersectionBy.mjs';
20
20
  export { intersectionWith } from './array/intersectionWith.mjs';
21
+ export { join } from './array/join.mjs';
21
22
  export { keyBy } from './array/keyBy.mjs';
22
23
  export { maxBy } from './array/maxBy.mjs';
23
24
  export { minBy } from './array/minBy.mjs';
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.17.0-dev.510+a84ffa9a",
4
+ "version": "1.17.0-dev.511+3a6cb365",
5
5
  "homepage": "https://es-toolkit.slash.page",
6
6
  "bugs": "https://github.com/toss/es-toolkit/issues",
7
7
  "repository": {