Skip to content

Commit c6474f6

Browse files
committed
Auto-generated commit
1 parent a4c15f8 commit c6474f6

9 files changed

Lines changed: 179 additions & 19 deletions

File tree

.github/.keepalive

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

CHANGELOG.md

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

7-
## Unreleased (2025-08-11)
7+
## Unreleased (2025-08-15)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`6f85067`](https://github.com/stdlib-js/stdlib/commit/6f8506775cdf2b3edf740216340ff7a0a82677dc) - **test:** fix malformed test descriptions from strictEqual migration _(by Philipp Burckhardt)_
16+
- [`fc438e0`](https://github.com/stdlib-js/stdlib/commit/fc438e0edbad0689d6923d6f3edb959b96597662) - **test:** use standardized assertion messages and fix lint errors _(by Philipp Burckhardt)_
17+
- [`65ddf8d`](https://github.com/stdlib-js/stdlib/commit/65ddf8d4d51ccfda52d1c5a06408e43fb386c27e) - **test:** use .strictEqual() instead of .equal() and fix lint errors _(by Philipp Burckhardt)_
1518
- [`aa8b15b`](https://github.com/stdlib-js/stdlib/commit/aa8b15b9c8aa11db7dc584b0368fedeb98ef885a) - **docs:** minor clean-up _(by Philipp Burckhardt)_
1619
- [`46cbdfe`](https://github.com/stdlib-js/stdlib/commit/46cbdfeff1b3f2dc38a442eafaf0cc25239fc518) - **docs:** replace manual `for` loop in examples [(#6639)](https://github.com/stdlib-js/stdlib/pull/6639) _(by Harsh)_
1720
- [`630ddb7`](https://github.com/stdlib-js/stdlib/commit/630ddb777824b5f6e501fda6dadf4ce41dccb964) - **test:** replace equal with strictEqual _(by Karan Anand)_

CONTRIBUTORS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Abhishek G <166795493+AbhishekG-Codes@users.noreply.github.com>
1313
Abhishek Jain <40913033+abhishekblue@users.noreply.github.com>
1414
Adarsh Palaskar <adarshpalaskar99@gmail.com>
1515
Aditya Sapra <adityaework@gmail.com>
16+
Aditya Singh <adityasinghk099@gmail.com>
1617
Ahmed Atwa <Ahmedatwa866@yahoo.com>
1718
Ahmed Kashkoush <ahmedkashkoush464@gmail.com>
1819
Ahmed Khaled <kahmd1444@gmail.com>
@@ -121,6 +122,7 @@ Muhammad Haris <harriskhan047@outlook.com>
121122
Muhammad Taaha Tariq <166188821+Taaha-Tariq@users.noreply.github.com>
122123
Muhmmad Saad <106260977+saad-imran-dev@users.noreply.github.com>
123124
NEEKUorAAYUSH <aayush10072004@gmail.com>
125+
Nakul Krishnakumar <nakulkrishnakumar86@gmail.com>
124126
Naresh Jagadeesan <naresh.naresh000@gmail.com>
125127
Naveen Kumar <stupiddint@gmail.com>
126128
Neeraj Pathak <neerajrpathak710@gmail.com>
@@ -164,6 +166,7 @@ Ruthwik Chikoti <145591715+ruthwikchikoti@users.noreply.github.com>
164166
Ryan Seal <splrk@users.noreply.github.com>
165167
Rylan Yang <137365285+rylany27@users.noreply.github.com>
166168
SAHIL KUMAR <168997976+sahilk45@users.noreply.github.com>
169+
SAUJANYA MAGARDE <162047941+SaujanyaMagarde@users.noreply.github.com>
167170
SHIVAM YADAV <120725381+Shivam-1827@users.noreply.github.com>
168171
Sachin Raj <120590207+schnrj@users.noreply.github.com>
169172
Sahil Goyal <87982509+sahil20021008@users.noreply.github.com>

README.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -251,11 +251,6 @@ For more information on the project, filing bug reports and feature requests, an
251251

252252
---
253253

254-
## License
255-
256-
See [LICENSE][stdlib-license].
257-
258-
259254
## Copyright
260255

261256
Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].
@@ -302,8 +297,6 @@ Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].
302297
[esm-readme]: https://github.com/stdlib-js/math-base-special-kronecker-deltaf/blob/esm/README.md
303298
[branches-url]: https://github.com/stdlib-js/math-base-special-kronecker-deltaf/blob/main/branches.md
304299

305-
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/math-base-special-kronecker-deltaf/main/LICENSE
306-
307300
[kronecker-delta]: https://en.wikipedia.org/wiki/Kronecker_delta
308301

309302
<!-- <related-links> -->

dist/index.js

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

dist/main.js

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

dist/native.js

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

test/test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,13 @@ tape( 'the function returns `NaN` if provided a `NaN`', function test( t ) {
8080
var v;
8181

8282
v = kroneckerDeltaf( NaN, 0.0 );
83-
t.strictEqual( isnanf( v ), true, 'returns NaN' );
83+
t.strictEqual( isnanf( v ), true, 'returns expected value' );
8484

8585
v = kroneckerDeltaf( 0.0, NaN );
86-
t.strictEqual( isnanf( v ), true, 'returns NaN' );
86+
t.strictEqual( isnanf( v ), true, 'returns expected value' );
8787

8888
v = kroneckerDeltaf( NaN, NaN );
89-
t.strictEqual( isnanf( v ), true, 'returns NaN' );
89+
t.strictEqual( isnanf( v ), true, 'returns expected value' );
9090

9191
t.end();
9292
});

test/test.native.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,13 +89,13 @@ tape( 'the function returns `NaN` if provided a `NaN`', opts, function test( t )
8989
var v;
9090

9191
v = kroneckerDeltaf( NaN, 0.0 );
92-
t.strictEqual( isnanf( v ), true, 'returns NaN' );
92+
t.strictEqual( isnanf( v ), true, 'returns expected value' );
9393

9494
v = kroneckerDeltaf( 0.0, NaN );
95-
t.strictEqual( isnanf( v ), true, 'returns NaN' );
95+
t.strictEqual( isnanf( v ), true, 'returns expected value' );
9696

9797
v = kroneckerDeltaf( NaN, NaN );
98-
t.strictEqual( isnanf( v ), true, 'returns NaN' );
98+
t.strictEqual( isnanf( v ), true, 'returns expected value' );
9999

100100
t.end();
101101
});

0 commit comments

Comments
 (0)