Skip to content

Commit 578d909

Browse files
committed
Auto-generated commit
1 parent be239ec commit 578d909

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 3 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-11-10)
7+
## Unreleased (2025-11-13)
88

99
<section class="features">
1010

@@ -139,6 +139,8 @@ A total of 24 issues were closed in this release:
139139

140140
<details>
141141

142+
- [`6ec2903`](https://github.com/stdlib-js/stdlib/commit/6ec29030b57eb6fc493561082e211d44608739be) - **docs:** fix description _(by Philipp Burckhardt)_
143+
- [`e4d5f21`](https://github.com/stdlib-js/stdlib/commit/e4d5f21b9a7111bb6255874d2f7a2d5a0c08e59e) - **docs:** fix lint errors in TS declaration files _(by Philipp Burckhardt)_
142144
- [`38e4338`](https://github.com/stdlib-js/stdlib/commit/38e433821d47feaeb98a76eba305d54c45371c20) - **feat:** add `assert/has-split-symbol-support` [(#8476)](https://github.com/stdlib-js/stdlib/pull/8476) _(by Divyanshu, Athan Reines)_
143145
- [`fd7e728`](https://github.com/stdlib-js/stdlib/commit/fd7e72861fd32cc8653d4f252c6b0c1a6f4b2b72) - **docs:** update namespace table of contents [(#8487)](https://github.com/stdlib-js/stdlib/pull/8487) _(by stdlib-bot)_
144146
- [`62c17c8`](https://github.com/stdlib-js/stdlib/commit/62c17c82a0219e456eeb05d3b0a0d6ca17ad09ed) - **feat:** add `hasToPrimitiveSymbolSupport` to namespace _(by Athan Reines)_

deep-has-own-property/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ interface Options {
3636
*
3737
* @example
3838
* var obj = { 'a': { 'b': { 'c': 'd' } } };
39-
* var bool = deepHasOwnProp( obj );
39+
* var bool = deepHasOwnProp( obj, 'a' );
4040
*/
4141
type HasFunction = ( value: any ) => boolean;
4242

@@ -96,7 +96,7 @@ interface DeepHasOwnProp {
9696
( value: any, path: string | Array<string>, options?: Options ): boolean;
9797

9898
/**
99-
* Returns a function which tests whether an object has a nested key path, either own or inherited.
99+
* Returns a function which tests whether an object has a nested key path.
100100
*
101101
* ## Notes
102102
*

deep-has-property/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ interface Options {
3636
*
3737
* @example
3838
* var obj = { 'a': { 'b': { 'c': 'd' } } };
39-
* var bool = deepHasProp( obj );
39+
* var bool = deepHasProp( obj, 'a' );
4040
*/
4141
type HasFunction = ( value: any ) => boolean;
4242

@@ -114,7 +114,7 @@ interface DeepHasProp {
114114
* @returns function which tests whether an object has a nested key path
115115
*
116116
* @example
117-
* var has = factory( 'a/b/c', {
117+
* var has = deepHasProp.factory( 'a/b/c', {
118118
* 'sep': '/'
119119
* });
120120
*/

0 commit comments

Comments
 (0)