Skip to content

Commit 70d7d93

Browse files
committed
Auto-generated commit
1 parent e92567d commit 70d7d93

File tree

2 files changed

+59
-1
lines changed

2 files changed

+59
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-01-19)
7+
## Unreleased (2026-01-21)
88

99
<section class="features">
1010

@@ -61,6 +61,7 @@
6161

6262
<details>
6363

64+
- [`68446dc`](https://github.com/stdlib-js/stdlib/commit/68446dcb55d7b08e39baf6efae7ba5ba038c923f) - **docs:** update namespace table of contents [(#9848)](https://github.com/stdlib-js/stdlib/pull/9848) _(by stdlib-bot)_
6465
- [`717d578`](https://github.com/stdlib-js/stdlib/commit/717d5781130080c98d0a6f205cda38f24c62a3d9) - **feat:** update `object` TypeScript declarations [(#9827)](https://github.com/stdlib-js/stdlib/pull/9827) _(by stdlib-bot)_
6566
- [`fc99e79`](https://github.com/stdlib-js/stdlib/commit/fc99e79e5cc20a58d1bb69644fdda25f2370474d) - **feat:** add packages to object namespace _(by Philipp Burckhardt)_
6667
- [`0472076`](https://github.com/stdlib-js/stdlib/commit/04720767c484e6277ad9411dff3dc5a116c31378) - **docs:** remove duplicated words in documentation and comments _(by Philipp Burckhardt)_

README.md

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,32 @@ The namespace contains the following:
7878

7979
<div class="namespace-toc">
8080

81+
- <span class="signature">[`anyInBy( object, predicate[, thisArg ] )`][@stdlib/object/any-in-by]</span><span class="delimiter">: </span><span class="description">test whether at least one property in an object passes a test implemented by a predicate function.</span>
82+
- <span class="signature">[`anyOwnBy( object, predicate[, thisArg ] )`][@stdlib/object/any-own-by]</span><span class="delimiter">: </span><span class="description">test whether at least one own property of a provided object passes a test implemented by a predicate function.</span>
8183
- <span class="signature">[`assignIn( target, source1[, source2[,...,sourceN]] )`][@stdlib/object/assign-in]</span><span class="delimiter">: </span><span class="description">copy enumerable own and inherited properties from one or more source objects to a target object.</span>
8284
- <span class="signature">[`assign( target, source1[, source2[,...,sourceN]] )`][@stdlib/object/assign]</span><span class="delimiter">: </span><span class="description">copy enumerable own properties from one or more source objects to a target object.</span>
85+
- <span class="signature">[`bifurcateIn( obj, [options,] predicate )`][@stdlib/object/bifurcate-in]</span><span class="delimiter">: </span><span class="description">split an object's **own** and **inherited** property values into two groups according to a predicate function.</span>
86+
- <span class="signature">[`bifurcateOwn( obj, [options,] predicate )`][@stdlib/object/bifurcate-own]</span><span class="delimiter">: </span><span class="description">split an object's **own** property values into two groups according to a predicate function.</span>
87+
- <span class="signature">[`capitalizeKeys( obj )`][@stdlib/object/capitalize-keys]</span><span class="delimiter">: </span><span class="description">convert the first letter of each object key to uppercase.</span>
88+
- <span class="signature">[`commonKeysIn( obj1, obj2[, obj3[,...,objN]] )`][@stdlib/object/common-keys-in]</span><span class="delimiter">: </span><span class="description">return the common own and inherited property names of two or more objects.</span>
89+
- <span class="signature">[`commonKeys( obj1, obj2[, obj3[,...,objN]] )`][@stdlib/object/common-keys]</span><span class="delimiter">: </span><span class="description">return the common own property names of two or more objects.</span>
8390
- <span class="signature">[`Object( value )`][@stdlib/object/ctor]</span><span class="delimiter">: </span><span class="description">object constructor.</span>
91+
- <span class="signature">[`deepGet( obj, path[, options] )`][@stdlib/object/deep-get]</span><span class="delimiter">: </span><span class="description">get a nested property value.</span>
92+
- <span class="signature">[`deepSet( obj, path, value[, options] )`][@stdlib/object/deep-set]</span><span class="delimiter">: </span><span class="description">set a nested property value.</span>
8493
- <span class="signature">[`everyInBy( object, predicate[, thisArg ] )`][@stdlib/object/every-in-by]</span><span class="delimiter">: </span><span class="description">test whether all properties (own and inherited) of an object pass a test implemented by a predicate function.</span>
8594
- <span class="signature">[`everyOwnBy( object, predicate[, thisArg ] )`][@stdlib/object/every-own-by]</span><span class="delimiter">: </span><span class="description">test whether all own propertes of an object pass a test implemented by a predicate function.</span>
95+
- <span class="signature">[`forIn( obj, fcn[, thisArg ] )`][@stdlib/object/for-in]</span><span class="delimiter">: </span><span class="description">invoke a function for each own and inherited enumerable property of an object.</span>
96+
- <span class="signature">[`forOwn( obj, fcn[, thisArg ] )`][@stdlib/object/for-own]</span><span class="delimiter">: </span><span class="description">invoke a function for each own enumerable property of an object.</span>
97+
- <span class="signature">[`inverseBy( obj, [options,] transform )`][@stdlib/object/inverse-by]</span><span class="delimiter">: </span><span class="description">invert an object, such that keys become values and values become keys, according to a transform function.</span>
98+
- <span class="signature">[`inverse( obj[, options] )`][@stdlib/object/inverse]</span><span class="delimiter">: </span><span class="description">invert an object, such that keys become values and values become keys.</span>
99+
- <span class="signature">[`lowercaseKeys( obj )`][@stdlib/object/lowercase-keys]</span><span class="delimiter">: </span><span class="description">convert each object key to lowercase.</span>
100+
- <span class="signature">[`moveProperty( source, prop, target )`][@stdlib/object/move-property]</span><span class="delimiter">: </span><span class="description">move a property from one object to another object.</span>
86101
- <span class="signature">[`noneInBy( object, predicate[, thisArg ] )`][@stdlib/object/none-in-by]</span><span class="delimiter">: </span><span class="description">test whether every property of an object fails a test implemented by a predicate function.</span>
102+
- <span class="signature">[`noneOwnBy( object, predicate[, thisArg ] )`][@stdlib/object/none-own-by]</span><span class="delimiter">: </span><span class="description">tests whether every own property of an object fails a test implemented by a predicate function.</span>
87103
- <span class="signature">[`someInBy( obj, n, predicate[, thisArg ] )`][@stdlib/object/some-in-by]</span><span class="delimiter">: </span><span class="description">test whether an object contains at least `n` properties which pass a test implemented by a predicate function.</span>
104+
- <span class="signature">[`someOwnBy( obj, n, predicate[, thisArg ] )`][@stdlib/object/some-own-by]</span><span class="delimiter">: </span><span class="description">test whether an object contains at least `n` own properties which pass a test implemented by a predicate function.</span>
105+
- <span class="signature">[`uncapitalizeKeys( obj )`][@stdlib/object/uncapitalize-keys]</span><span class="delimiter">: </span><span class="description">convert the first letter of each object key to lowercase.</span>
106+
- <span class="signature">[`uppercaseKeys( obj )`][@stdlib/object/uppercase-keys]</span><span class="delimiter">: </span><span class="description">convert each object key to uppercase.</span>
88107

89108
</div>
90109

@@ -195,20 +214,58 @@ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
195214

196215
<!-- <toc-links> -->
197216

217+
[@stdlib/object/any-in-by]: https://github.com/stdlib-js/object/tree/main/any-in-by
218+
219+
[@stdlib/object/any-own-by]: https://github.com/stdlib-js/object/tree/main/any-own-by
220+
198221
[@stdlib/object/assign-in]: https://github.com/stdlib-js/object/tree/main/assign-in
199222

200223
[@stdlib/object/assign]: https://github.com/stdlib-js/object/tree/main/assign
201224

225+
[@stdlib/object/bifurcate-in]: https://github.com/stdlib-js/object/tree/main/bifurcate-in
226+
227+
[@stdlib/object/bifurcate-own]: https://github.com/stdlib-js/object/tree/main/bifurcate-own
228+
229+
[@stdlib/object/capitalize-keys]: https://github.com/stdlib-js/object/tree/main/capitalize-keys
230+
231+
[@stdlib/object/common-keys-in]: https://github.com/stdlib-js/object/tree/main/common-keys-in
232+
233+
[@stdlib/object/common-keys]: https://github.com/stdlib-js/object/tree/main/common-keys
234+
202235
[@stdlib/object/ctor]: https://github.com/stdlib-js/object/tree/main/ctor
203236

237+
[@stdlib/object/deep-get]: https://github.com/stdlib-js/object/tree/main/deep-get
238+
239+
[@stdlib/object/deep-set]: https://github.com/stdlib-js/object/tree/main/deep-set
240+
204241
[@stdlib/object/every-in-by]: https://github.com/stdlib-js/object/tree/main/every-in-by
205242

206243
[@stdlib/object/every-own-by]: https://github.com/stdlib-js/object/tree/main/every-own-by
207244

245+
[@stdlib/object/for-in]: https://github.com/stdlib-js/object/tree/main/for-in
246+
247+
[@stdlib/object/for-own]: https://github.com/stdlib-js/object/tree/main/for-own
248+
249+
[@stdlib/object/inverse-by]: https://github.com/stdlib-js/object/tree/main/inverse-by
250+
251+
[@stdlib/object/inverse]: https://github.com/stdlib-js/object/tree/main/inverse
252+
253+
[@stdlib/object/lowercase-keys]: https://github.com/stdlib-js/object/tree/main/lowercase-keys
254+
255+
[@stdlib/object/move-property]: https://github.com/stdlib-js/object/tree/main/move-property
256+
208257
[@stdlib/object/none-in-by]: https://github.com/stdlib-js/object/tree/main/none-in-by
209258

259+
[@stdlib/object/none-own-by]: https://github.com/stdlib-js/object/tree/main/none-own-by
260+
210261
[@stdlib/object/some-in-by]: https://github.com/stdlib-js/object/tree/main/some-in-by
211262

263+
[@stdlib/object/some-own-by]: https://github.com/stdlib-js/object/tree/main/some-own-by
264+
265+
[@stdlib/object/uncapitalize-keys]: https://github.com/stdlib-js/object/tree/main/uncapitalize-keys
266+
267+
[@stdlib/object/uppercase-keys]: https://github.com/stdlib-js/object/tree/main/uppercase-keys
268+
212269
<!-- </toc-links> -->
213270

214271
</section>

0 commit comments

Comments
 (0)