Skip to content

Commit 2041e3a

Browse files
committed
Auto-generated commit
1 parent ecddd49 commit 2041e3a

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222

2323
<details>
2424

25+
- [`de93d8f`](https://github.com/stdlib-js/stdlib/commit/de93d8f17831ad02c68e33181fa9226f88e42d29) - **chore:** resolve lint errors and update examples _(by Athan Reines)_
2526
- [`77b2415`](https://github.com/stdlib-js/stdlib/commit/77b2415c59c5f000c37b3e005ca9b6323199ba60) - **feat:** add `assert/is-float16array` [(#7273)](https://github.com/stdlib-js/stdlib/pull/7273) _(by Uday Kakade, Athan Reines, stdlib-bot)_
2627

2728
</details>

dist/index.js.map

Lines changed: 1 addition & 1 deletion
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
@@ -27,7 +27,7 @@ var nativeClass = require( '@stdlib/utils-native-class' );
2727

2828
// VARIABLES //
2929

30-
var hasFloat16Array = ( typeof Float16Array === 'function' );
30+
var hasFloat16Array = ( typeof Float16Array === 'function' ); // eslint-disable-line stdlib/require-globals
3131

3232

3333
// MAIN //
@@ -50,7 +50,7 @@ var hasFloat16Array = ( typeof Float16Array === 'function' );
5050
*/
5151
function isFloat16Array( value ) {
5252
return (
53-
( hasFloat16Array && value instanceof Float16Array ) ||
53+
( hasFloat16Array && value instanceof Float16Array ) || // eslint-disable-line stdlib/require-globals
5454
nativeClass( value ) === '[object Float16Array]'
5555
);
5656
}

0 commit comments

Comments
 (0)