File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff 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)_
Original file line number Diff line number Diff 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 (
You can’t perform that action at this time.
0 commit comments