Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5c159c3

Browse files
committedMay 7, 2025·
Auto-generated commit
1 parent 30b9d7d commit 5c159c3

File tree

5 files changed

+31
-3
lines changed

5 files changed

+31
-3
lines changed
 

‎CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010

1111
### Features
1212

13+
- [`0f6d4e7`](https://github.com/stdlib-js/stdlib/commit/0f6d4e7694d458f76dc077d5b618e405f6cfed37) - add `anyIsEntry` to namespace
14+
- [`fbffea0`](https://github.com/stdlib-js/stdlib/commit/fbffea0a7be15b6013111fd0b613548d7c09a1b7) - add `array/base/assert/any-is-entry`
15+
- [`dc8942d`](https://github.com/stdlib-js/stdlib/commit/dc8942da05af3ed631f67fc679c7c1730954e1be) - add `anyIsEntryIn` to namespace
16+
- [`c9edc1a`](https://github.com/stdlib-js/stdlib/commit/c9edc1ab611674fe14def4df00cf8ca407ec4cce) - add `array/base/assert/any-is-entry-in`
1317
- [`8b2c875`](https://github.com/stdlib-js/stdlib/commit/8b2c875e56586bdff1698fd768cec5d568ab24a0) - add `anyHasOwnProp` to namespace
1418
- [`533df61`](https://github.com/stdlib-js/stdlib/commit/533df61c24c654e67a6d3dbf84b878ec0f8c9520) - add `array/base/assert/any-has-own-property`
1519
- [`2ab5cd8`](https://github.com/stdlib-js/stdlib/commit/2ab5cd84a76425d34ed204d222c33a000107b8d0) - add `anyHasProp` to namespace
@@ -47,6 +51,10 @@
4751

4852
<details>
4953

54+
- [`0f6d4e7`](https://github.com/stdlib-js/stdlib/commit/0f6d4e7694d458f76dc077d5b618e405f6cfed37) - **feat:** add `anyIsEntry` to namespace _(by Athan Reines)_
55+
- [`fbffea0`](https://github.com/stdlib-js/stdlib/commit/fbffea0a7be15b6013111fd0b613548d7c09a1b7) - **feat:** add `array/base/assert/any-is-entry` _(by Athan Reines)_
56+
- [`dc8942d`](https://github.com/stdlib-js/stdlib/commit/dc8942da05af3ed631f67fc679c7c1730954e1be) - **feat:** add `anyIsEntryIn` to namespace _(by Athan Reines)_
57+
- [`c9edc1a`](https://github.com/stdlib-js/stdlib/commit/c9edc1ab611674fe14def4df00cf8ca407ec4cce) - **feat:** add `array/base/assert/any-is-entry-in` _(by Athan Reines)_
5058
- [`8b2c875`](https://github.com/stdlib-js/stdlib/commit/8b2c875e56586bdff1698fd768cec5d568ab24a0) - **feat:** add `anyHasOwnProp` to namespace _(by Athan Reines)_
5159
- [`533df61`](https://github.com/stdlib-js/stdlib/commit/533df61c24c654e67a6d3dbf84b878ec0f8c9520) - **feat:** add `array/base/assert/any-has-own-property` _(by Athan Reines)_
5260
- [`80b1cec`](https://github.com/stdlib-js/stdlib/commit/80b1cec874dbe423a50ed26c1a6c3a7f5fc05cd9) - **docs:** update examples _(by Athan Reines)_

‎dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎dist/index.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎lib/index.js

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,24 @@ setReadOnly( ns, 'anyHasOwnProp', require( '@stdlib/array-base-assert-any-has-ow
5454
*/
5555
setReadOnly( ns, 'anyHasProp', require( '@stdlib/array-base-assert-any-has-property' ) );
5656

57+
/**
58+
* @name anyIsEntry
59+
* @memberof ns
60+
* @readonly
61+
* @type {Function}
62+
* @see {@link module:@stdlib/array/base/assert/any-is-entry}
63+
*/
64+
setReadOnly( ns, 'anyIsEntry', require( '@stdlib/array-base-assert-any-is-entry' ) );
65+
66+
/**
67+
* @name anyIsEntryIn
68+
* @memberof ns
69+
* @readonly
70+
* @type {Function}
71+
* @see {@link module:@stdlib/array/base/assert/any-is-entry-in}
72+
*/
73+
setReadOnly( ns, 'anyIsEntryIn', require( '@stdlib/array-base-assert-any-is-entry-in' ) );
74+
5775
/**
5876
* @name contains
5977
* @memberof ns

‎package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@
3838
"dependencies": {
3939
"@stdlib/array-base-assert-any-has-own-property": "github:stdlib-js/array-base-assert-any-has-own-property#main",
4040
"@stdlib/array-base-assert-any-has-property": "github:stdlib-js/array-base-assert-any-has-property#main",
41+
"@stdlib/array-base-assert-any-is-entry": "github:stdlib-js/array-base-assert-any-is-entry#main",
42+
"@stdlib/array-base-assert-any-is-entry-in": "github:stdlib-js/array-base-assert-any-is-entry-in#main",
4143
"@stdlib/array-base-assert-contains": "^0.2.2",
4244
"@stdlib/array-base-assert-has-equal-values": "github:stdlib-js/array-base-assert-has-equal-values#main",
4345
"@stdlib/array-base-assert-has-equal-values-indexed": "github:stdlib-js/array-base-assert-has-equal-values-indexed#main",

0 commit comments

Comments
 (0)
Please sign in to comment.