Skip to content

Commit 9c6f900

Browse files
committed
Auto-generated commit
1 parent e46e23c commit 9c6f900

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-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 (2025-05-07)
7+
## Unreleased (2025-05-08)
88

99
<section class="features">
1010

@@ -176,6 +176,7 @@ A total of 31 issues were closed in this release:
176176

177177
<details>
178178

179+
- [`c29e97b`](https://github.com/stdlib-js/stdlib/commit/c29e97b6388cecff97906f3613880765b601da2a) - **docs:** update namespace table of contents [(#6948)](https://github.com/stdlib-js/stdlib/pull/6948) _(by stdlib-bot, Athan Reines)_
179180
- [`0f6d4e7`](https://github.com/stdlib-js/stdlib/commit/0f6d4e7694d458f76dc077d5b618e405f6cfed37) - **feat:** add `anyIsEntry` to namespace _(by Athan Reines)_
180181
- [`fbffea0`](https://github.com/stdlib-js/stdlib/commit/fbffea0a7be15b6013111fd0b613548d7c09a1b7) - **feat:** add `array/base/assert/any-is-entry` _(by Athan Reines)_
181182
- [`dc8942d`](https://github.com/stdlib-js/stdlib/commit/dc8942da05af3ed631f67fc679c7c1730954e1be) - **feat:** add `anyIsEntryIn` to namespace _(by Athan Reines)_

base/assert/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,10 @@ The namespace exports the following:
4545

4646
<div class="namespace-toc">
4747

48+
- <span class="signature">[`anyHasOwnProp( arr, property )`][@stdlib/array/base/assert/any-has-own-property]</span><span class="delimiter">: </span><span class="description">test whether at least one element in a provided array has a specified own property.</span>
49+
- <span class="signature">[`anyHasProp( arr, property )`][@stdlib/array/base/assert/any-has-property]</span><span class="delimiter">: </span><span class="description">test whether at least one element in a provided array has a specified property, either own or inherited.</span>
50+
- <span class="signature">[`anyIsEntryIn( arr, property )`][@stdlib/array/base/assert/any-is-entry-in]</span><span class="delimiter">: </span><span class="description">test whether at least one element in a provided array has a specified property key-value pair, either own or inherited.</span>
51+
- <span class="signature">[`anyIsEntry( arr, property )`][@stdlib/array/base/assert/any-is-entry]</span><span class="delimiter">: </span><span class="description">test whether at least one element in a provided array has a specified own property key-value pair.</span>
4852
- <span class="signature">[`contains( x, value )`][@stdlib/array/base/assert/contains]</span><span class="delimiter">: </span><span class="description">test if an array contains a provided search value.</span>
4953
- <span class="signature">[`hasEqualValuesIndexed( x, y )`][@stdlib/array/base/assert/has-equal-values-indexed]</span><span class="delimiter">: </span><span class="description">test if two indexed arrays have equal values.</span>
5054
- <span class="signature">[`hasEqualValues( x, y )`][@stdlib/array/base/assert/has-equal-values]</span><span class="delimiter">: </span><span class="description">test if two arrays have equal values.</span>
@@ -175,6 +179,14 @@ console.log( 'arr4 is complex typed array: ' + ns.isComplexTypedArray( arr4 ) );
175179

176180
<!-- <toc-links> -->
177181

182+
[@stdlib/array/base/assert/any-has-own-property]: https://github.com/stdlib-js/array/tree/main/base/assert/any-has-own-property
183+
184+
[@stdlib/array/base/assert/any-has-property]: https://github.com/stdlib-js/array/tree/main/base/assert/any-has-property
185+
186+
[@stdlib/array/base/assert/any-is-entry-in]: https://github.com/stdlib-js/array/tree/main/base/assert/any-is-entry-in
187+
188+
[@stdlib/array/base/assert/any-is-entry]: https://github.com/stdlib-js/array/tree/main/base/assert/any-is-entry
189+
178190
[@stdlib/array/base/assert/contains]: https://github.com/stdlib-js/array/tree/main/base/assert/contains
179191

180192
[@stdlib/array/base/assert/has-equal-values-indexed]: https://github.com/stdlib-js/array/tree/main/base/assert/has-equal-values-indexed

0 commit comments

Comments
 (0)