Skip to content

Commit 592f0c7

Browse files
committed
Auto-generated commit
1 parent 169767a commit 592f0c7

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
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

@@ -22,6 +22,7 @@
2222

2323
<details>
2424

25+
- [`d3c2ccc`](https://github.com/stdlib-js/stdlib/commit/d3c2ccca187782867ce02171a4d0da106728a731) - **docs:** resolve typos and documentation inconsistencies _(by Philipp Burckhardt)_
2526
- [`82b3ef7`](https://github.com/stdlib-js/stdlib/commit/82b3ef70656a8fe1a765fc6875b2d440904c1d79) - **feat:** add `object/none-own-by` _(by Neeraj Pathak)_
2627

2728
</details>
@@ -34,9 +35,10 @@
3435

3536
### Contributors
3637

37-
A total of 1 person contributed to this release. Thank you to this contributor:
38+
A total of 2 people contributed to this release. Thank you to the following contributors:
3839

3940
- Neeraj Pathak
41+
- Philipp Burckhardt
4042

4143
</section>
4244

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/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)