Skip to content

Commit 2398766

Browse files
committed
Auto-generated commit
1 parent f210936 commit 2398766

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

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-12-01)
7+
## Unreleased (2025-12-02)
88

99
<section class="features">
1010

@@ -32,6 +32,7 @@
3232

3333
<details>
3434

35+
- [`d3c2ccc`](https://github.com/stdlib-js/stdlib/commit/d3c2ccca187782867ce02171a4d0da106728a731) - **docs:** resolve typos and documentation inconsistencies _(by Philipp Burckhardt)_
3536
- [`38c3e12`](https://github.com/stdlib-js/stdlib/commit/38c3e1201b3d051c577cc97f7b3cc87999ec052a) - **refactor:** update paths _(by Neeraj Pathak)_
3637
- [`82b3ef7`](https://github.com/stdlib-js/stdlib/commit/82b3ef70656a8fe1a765fc6875b2d440904c1d79) - **feat:** add `object/none-own-by` _(by Neeraj Pathak)_
3738
- [`0b449a3`](https://github.com/stdlib-js/stdlib/commit/0b449a38d1f623ac56b4cec10626cd022c299c87) - **refactor:** update paths _(by Neeraj Pathak)_

any-own-by/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ limitations under the License.
4040
var anyOwnBy = require( '@stdlib/object/any-own-by' );
4141
```
4242

43-
#### anyBy( collection, predicate\[, thisArg ] )
43+
#### anyOwnBy( object, predicate\[, thisArg ] )
4444

4545
Tests whether at least one own property of a provided [`object`][mdn-object] passes a test implemented by a `predicate` function.
4646

none-own-by/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ function noneOwnBy( obj, predicate, thisArg ) {
5656
var key;
5757

5858
if ( !isObject( obj ) ) {
59-
throw new TypeError( format(' invalid argument. First argument must be an object. Value: `%s`.', obj ) );
59+
throw new TypeError( format( 'invalid argument. First argument must be an object. Value: `%s`.', obj ) );
6060
}
6161
if ( !isFunction( predicate ) ) {
6262
throw new TypeError( format( 'invalid argument. Second argument must be a function. Value: `%s`.', predicate ) );

0 commit comments

Comments
 (0)