Skip to content

Commit b537aa9

Browse files
committed
Auto-generated commit
1 parent 87cac2f commit b537aa9

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2024-12-23)
7+
## Unreleased (2024-12-24)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`2965f8f`](https://github.com/stdlib-js/stdlib/commit/2965f8f4d1469ed76c7d9c150b39a87b62d73fbd) - **chore:** minor clean-up _(by Philipp Burckhardt)_
1516
- [`b20a9e6`](https://github.com/stdlib-js/stdlib/commit/b20a9e616e5d04cfc3e5bc71bd557e15af738050) - **docs:** update related packages sections [(#3936)](https://github.com/stdlib-js/stdlib/pull/3936) _(by stdlib-bot)_
1617
- [`6e9f42e`](https://github.com/stdlib-js/stdlib/commit/6e9f42e4c912485d9896eaa16c88b70fd3688e97) - **docs:** harmonize list formatting in repl.txt and ensure starting newline _(by Philipp Burckhardt)_
1718

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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ var format = require( '@stdlib/string-format' );
3939
* @returns {boolean} boolean indicating whether all elements fail a test
4040
*
4141
* @example
42-
* function isUnderage(age) {
42+
* function isUnderage( age ) {
4343
* return ( age < 18 );
4444
* };
4545
*
@@ -62,7 +62,7 @@ function noneOwnBy( obj, predicate, thisArg ) {
6262
throw new TypeError( format( 'invalid argument. Second argument must be a function. Value: `%s`.', predicate ) );
6363
}
6464
for ( key in obj ) {
65-
if (hasOwnProp( obj, key ) && predicate.call( thisArg, obj[key], key, obj)) {
65+
if ( hasOwnProp( obj, key ) && predicate.call( thisArg, obj[key], key, obj ) ) {
6666
return false;
6767
}
6868
}

test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ tape( 'the function throws an error if not provided an object', function test( t
5050
/.*/,
5151
new Date()
5252
];
53-
for (i =0; i < values.length; i++) {
53+
for ( i =0; i < values.length; i++ ) {
5454
t.throws( badValue( values ), TypeError, 'throws a type error when provided '+values[i] );
5555
}
5656
t.end();

0 commit comments

Comments
 (0)