Skip to content

Commit 07645a3

Browse files
committed
Auto-generated commit
1 parent c11a4ff commit 07645a3

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -590,6 +590,7 @@ A total of 24 issues were closed in this release:
590590

591591
<details>
592592

593+
- [`7ac6058`](https://github.com/stdlib-js/stdlib/commit/7ac6058fdc8d3eede7ff5bb4e02fcba4b54e0211) - **docs:** add comment _(by Athan Reines)_
593594
- [`0af16c9`](https://github.com/stdlib-js/stdlib/commit/0af16c9618cb9bf7f5f3c521a8dbfc3e3f640b42) - **style:** resolve lint errors _(by Athan Reines)_
594595
- [`70e9b6c`](https://github.com/stdlib-js/stdlib/commit/70e9b6c1b5b3521412ed4a8fed9ab3de337ab661) - **feat:** add `ndarray/base/pop` [(#8108)](https://github.com/stdlib-js/stdlib/pull/8108) _(by Muhammad Haris, Athan Reines)_
595596
- [`bef69f1`](https://github.com/stdlib-js/stdlib/commit/bef69f1647b16c21cec08955ed3b26b41937ebd2) - **style:** resolve lint errors _(by Athan Reines)_

dtype-ctor/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ var format = require( '@stdlib/string/format' );
4747
* @param {*} value - value to test
4848
* @returns {boolean} boolean indicating if a value is a `DataType`
4949
*/
50-
function isDataType( value ) {
50+
function isDataType( value ) { // NOTE: we do not use `ndarray/base/assert/is-data-type-object` in order to avoid circular dependencies
5151
return (
5252
value instanceof DataType ||
5353
(

0 commit comments

Comments
 (0)