Skip to content

Commit bfff937

Browse files
committed
Auto-generated commit
1 parent 2239303 commit bfff937

File tree

33 files changed

+49
-47
lines changed

33 files changed

+49
-47
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@
5151

5252
### Bug Fixes
5353

54+
- [`b34ff7a`](https://github.com/stdlib-js/stdlib/commit/b34ff7a7f7f86904c29001a89d35abcdbbc5b04e) - return boolean to avoid misleading type predicate
55+
- [`220a673`](https://github.com/stdlib-js/stdlib/commit/220a67316e33fbbfcd336073bb5bc2396f7bfacf) - update to return false for empty strings
5456
- [`04fbd21`](https://github.com/stdlib-js/stdlib/commit/04fbd2138efb9db2fc14dcff5be31f200004a9e2) - add missing `isStruct` method check
5557
- [`21cdf0c`](https://github.com/stdlib-js/stdlib/commit/21cdf0c4d3de902744dfecd3387bc64317eddfd4) - javascript lint errors [(#7143)](https://github.com/stdlib-js/stdlib/pull/7143)
5658

@@ -110,6 +112,10 @@ A total of 6 issues were closed in this release:
110112

111113
<details>
112114

115+
- [`b34ff7a`](https://github.com/stdlib-js/stdlib/commit/b34ff7a7f7f86904c29001a89d35abcdbbc5b04e) - **fix:** return boolean to avoid misleading type predicate _(by Philipp Burckhardt)_
116+
- [`220a673`](https://github.com/stdlib-js/stdlib/commit/220a67316e33fbbfcd336073bb5bc2396f7bfacf) - **fix:** update to return false for empty strings _(by Philipp Burckhardt)_
117+
- [`7c9afed`](https://github.com/stdlib-js/stdlib/commit/7c9afed6a288c9e7d3048dfa0ac8f085759d73f4) - **chore:** minor clean-up _(by Philipp Burckhardt)_
118+
- [`ed5e336`](https://github.com/stdlib-js/stdlib/commit/ed5e33607785b54d61361d0399c6c47ed5775d64) - **docs:** minor clean-up _(by Philipp Burckhardt)_
113119
- [`bc3632a`](https://github.com/stdlib-js/stdlib/commit/bc3632a5a7b48a8973b1418e861ddc45b3e8d0fa) - **chore:** minor clean-up _(by Philipp Burckhardt)_
114120
- [`6f019ca`](https://github.com/stdlib-js/stdlib/commit/6f019ca3fa544d44dfdfd7a28580ba1031971a9d) - **docs:** update namespace table of contents [(#7472)](https://github.com/stdlib-js/stdlib/pull/7472) _(by stdlib-bot)_
115121
- [`62419d0`](https://github.com/stdlib-js/stdlib/commit/62419d0162b5fc9e4d18a97b67d8a2aea556b1a5) - **feat:** add `isStruct` to namespace _(by Athan Reines)_

has-tostringtag-support/docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11

22
{{alias}}()
3-
Tests for native `toStringTag` support.
3+
Tests for native `Symbol.toStringTag` support.
44

55
Returns
66
-------
77
bool: boolean
8-
Boolean indicating if an environment has `toStringTag` support.
8+
Boolean indicating if an environment has `Symbol.toStringTag` support.
99

1010
Examples
1111
--------

has-tostringtag-support/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
// TypeScript Version: 4.1
2020

2121
/**
22-
* Tests for native `toStringTag` support.
22+
* Tests for native `Symbol.toStringTag` support.
2323
*
24-
* @returns boolean indicating if an environment has `toStringTag` support
24+
* @returns boolean indicating if an environment has `Symbol.toStringTag` support
2525
*
2626
* @example
2727
* var bool = hasToStringTagSupport();

has-tostringtag-support/lib/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ var FLG = hasSymbols();
3131
// MAIN //
3232

3333
/**
34-
* Tests for native `toStringTag` support.
34+
* Tests for native `Symbol.toStringTag` support.
3535
*
36-
* @returns {boolean} boolean indicating if an environment has `toStringTag` support
36+
* @returns {boolean} boolean indicating if an environment has `Symbol.toStringTag` support
3737
*
3838
* @example
3939
* var bool = hasToStringTagSupport();

has-weakmap-support/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* var hasWeakMapSupport = require( '@stdlib/assert/has-weakmap-support' );
2828
*
2929
* var bool = hasWeakMapSupport();
30-
* // returns <Boolean>
30+
* // returns <boolean>
3131
*/
3232

3333
// MODULES //

has-weakset-support/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* var hasWeakSetSupport = require( '@stdlib/assert/has-weakset-support' );
2828
*
2929
* var bool = hasWeakSetSupport();
30-
* // returns <Boolean>
30+
* // returns <boolean>
3131
*/
3232

3333
// MODULES //

is-array-like-object/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ var MAX_LENGTH = require( '@stdlib/constants/array/max-array-length' );
3737
* // returns true
3838
*
3939
* @example
40-
* var bool = isArrayLikeObject( { 'length':10 } );
40+
* var bool = isArrayLikeObject( { 'length': 10 } );
4141
* // returns true
4242
*
4343
* @example

is-array-like/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ var MAX_LENGTH = require( '@stdlib/constants/array/max-array-length' );
3737
* // returns true
3838
*
3939
* @example
40-
* var bool = isArrayLike( {'length':10} );
40+
* var bool = isArrayLike( { 'length': 10 } );
4141
* // returns true
4242
*/
4343
function isArrayLike( value ) {

is-arraybuffer-view/lib/main.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,14 @@ var ArrayBuffer = require( '@stdlib/array/buffer' );
2626
// MAIN //
2727

2828
/**
29-
* Determines whether an object is an array buffer view.
29+
* Tests if a value is an array buffer view.
3030
*
3131
* @param {*} value - value to test
3232
* @returns {boolean} boolean indicating whether value is an array buffer view
3333
*
3434
* @example
3535
* var Int8Array = require( '@stdlib/array/int8' );
36+
*
3637
* var bool = isArrayBufferView( new Int8Array( 10 ) );
3738
* // returns true
3839
*

is-arrow-function/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var isArrowFunction = require( '@stdlib/assert/is-arrow-function' );
3232

3333
#### isArrowFunction( value )
3434

35-
Tests if a `value` is a an [`arrow function`][mdn-arrow-function] such as `( a, b ) => a + b`, `x => x`, or `( x ) => { return x*x; }`.
35+
Tests if a `value` is an [`arrow function`][mdn-arrow-function] such as `( a, b ) => a + b`, `x => x`, or `( x ) => { return x*x; }`.
3636

3737
<!-- eslint-disable func-style, no-restricted-syntax, node/no-unsupported-features/es-syntax -->
3838

0 commit comments

Comments
 (0)