Skip to content

Commit 2fc567c

Browse files
committed
Auto-generated commit
1 parent 6a59921 commit 2fc567c

File tree

8 files changed

+29
-14
lines changed

8 files changed

+29
-14
lines changed

.github/.keepalive

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

.gitignore

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,12 @@ jsconfig.json
188188
# Other editor files #
189189
######################
190190
.idea/
191-
192-
# Cursor #
193-
##########
191+
.cursor
194192
.cursorignore
193+
.windsurfrules
194+
.clinerules
195+
196+
# AI coding agents #
197+
####################
198+
CLAUDE.md
199+
GEMINI.md

CHANGELOG.md

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

7-
## Unreleased (2025-08-25)
7+
## Unreleased (2025-09-18)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`b6d34c9`](https://github.com/stdlib-js/stdlib/commit/b6d34c9e53f2b877e0647914ba21ebbc6091db18) - **refactor:** use functional API to resolve dtype and relax `dtype` property requirements _(by Athan Reines)_
1516
- [`11581aa`](https://github.com/stdlib-js/stdlib/commit/11581aaca8c3cb824cbb92c0c0f80e76890bdb20) - **test:** use standardized assertion messages and fix lint errors _(by Philipp Burckhardt)_
1617
- [`f9651e6`](https://github.com/stdlib-js/stdlib/commit/f9651e6411b4ebd3c95dcc6b46c02e6d5be009fa) - **test:** use .strictEqual() instead of .equal() and fix lint errors _(by Philipp Burckhardt)_
1718

@@ -25,8 +26,9 @@
2526

2627
### Contributors
2728

28-
A total of 1 person contributed to this release. Thank you to this contributor:
29+
A total of 2 people contributed to this release. Thank you to the following contributors:
2930

31+
- Athan Reines
3032
- Philipp Burckhardt
3133

3234
</section>

CONTRIBUTORS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ Anmol Sah <[email protected]>
2929
Annamalai Prabu <[email protected]>
3030
Anshu Kumar <[email protected]>
3131
Anshu Kumar <[email protected]>
32+
Anshumancanrock <[email protected]>
3233
Anudeep Sanapala <[email protected]>
3334
Arihant Pal <[email protected]>
3435
Aryan Bhirud <[email protected]>
@@ -42,6 +43,7 @@ Bruno Fenzl <[email protected]>
4243
Bryan Elee <[email protected]>
4344
Chinmay Joshi <[email protected]>
4445
Christopher Dambamuromo <[email protected]>
46+
DUDHAT HEMIL PRAVINKUMAR <[email protected]>
4547
4648
Daniel Hernandez Gomez <[email protected]>
4749
Daniel Killenberger <[email protected]>
@@ -65,6 +67,7 @@ Frank Kovacs <[email protected]>
6567
GK Bishnoi <[email protected]>
6668
GURU PRASAD SHARMA <[email protected]>
6769
70+
Gaurav Kaushik <[email protected]>
6871
Gautam Kaushik <[email protected]>
6972
Gautam sharma <[email protected]>
7073
@@ -135,6 +138,7 @@ Nourhan Hasan <[email protected]>
135138
Ognjen Jevremović <[email protected]>
136139
Oneday12323 <[email protected]>
137140
Ori Miles <[email protected]>
141+
Payal Goswami <[email protected]>
138142
Philipp Burckhardt <[email protected]>
139143
Pierre Forstmann <[email protected]>
140144
Pradyumn Prasad <[email protected]>
@@ -176,9 +180,11 @@ Sanchay Ketan Sinha <[email protected]>
176180
Sarthak Paandey <[email protected]>
177181
Satyajeet Chavan <[email protected]>
178182
Saurabh Singh <[email protected]>
183+
Seth-Banker <[email protected]>
179184
Seyyed Parsa Neshaei <[email protected]>
180185
Shabareesh Shetty <[email protected]>
181186
Shashank Shekhar Singh <[email protected]>
187+
Shaswata Panda <[email protected]>
182188
Shivam Ahir <[email protected]>
183189
184190
Shraddheya Shendre <[email protected]>
@@ -199,6 +205,7 @@ Tirtadwipa Manunggal <[email protected]>
199205
Tudor Pagu <[email protected]>
200206
Tufailahmed Bargir <[email protected]>
201207
Tushar Bhardwaj <[email protected]>
208+
Tyson Cung <[email protected]>
202209
Uday Kakade <[email protected]>
203210
Ujjwal Kirti <[email protected]>
204211
Utkarsh <http://[email protected]>

dist/index.js

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

dist/index.js.map

Lines changed: 3 additions & 3 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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
// MODULES //
2222

2323
var isndarrayLike = require( '@stdlib/assert-is-ndarray-like' );
24+
var getDType = require( '@stdlib/ndarray-base-dtype' );
2425

2526

2627
// MAIN //
@@ -45,7 +46,7 @@ var isndarrayLike = require( '@stdlib/assert-is-ndarray-like' );
4546
* // returns false
4647
*/
4748
function isFloat64ndarrayLike( v ) {
48-
return ( isndarrayLike( v ) && v.dtype === 'float64' );
49+
return ( isndarrayLike( v ) && getDType( v ) === 'float64' );
4950
}
5051

5152

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@
3737
"url": "https://github.com/stdlib-js/stdlib/issues"
3838
},
3939
"dependencies": {
40-
"@stdlib/assert-is-ndarray-like": "^0.2.2"
40+
"@stdlib/assert-is-ndarray-like": "^0.2.2",
41+
"@stdlib/ndarray-base-dtype": "^0.2.2"
4142
},
4243
"devDependencies": {
4344
"@stdlib/array-float64": "^0.2.2",

0 commit comments

Comments
 (0)