es-toolkit 1.47.1-dev.1851 → 1.47.1-dev.1853

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.
@@ -24,6 +24,7 @@ const require_set = require("./set.js");
24
24
  * // each path can be passed individually as an argument
25
25
  * const obj = { a: 1, b: 2, c: 3 };
26
26
  * const result = pick(obj, 'a', 'c');
27
+ * // result will be { a: 1, c: 3 }
27
28
  *
28
29
  * // pick a key over a path
29
30
  * const obj = { 'a.b': 1, a: { b: 2 } };
@@ -24,6 +24,7 @@ import { set } from "./set.mjs";
24
24
  * // each path can be passed individually as an argument
25
25
  * const obj = { a: 1, b: 2, c: 3 };
26
26
  * const result = pick(obj, 'a', 'c');
27
+ * // result will be { a: 1, c: 3 }
27
28
  *
28
29
  * // pick a key over a path
29
30
  * const obj = { 'a.b': 1, a: { b: 2 } };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "es-toolkit",
3
- "version": "1.47.1-dev.1851+bc10e66e",
3
+ "version": "1.47.1-dev.1853+7fc8a98e",
4
4
  "description": "A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.",
5
5
  "homepage": "https://es-toolkit.dev",
6
6
  "bugs": "https://github.com/toss/es-toolkit/issues",