Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Dec 15, 2024
1 parent 4f126fb commit ab3fa9d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -799,6 +799,7 @@ A total of 12 issues were closed in this release:

##### Bug Fixes

- [`629ce7b`](https://github.com/stdlib-js/stdlib/commit/629ce7bfa31b0d263f36fd597bb67acfc87689ff) - ensure support for typed arrays larger than 2^32-1
- [`dcfa1d6`](https://github.com/stdlib-js/stdlib/commit/dcfa1d62126625847df6517662851e812ef997be) - update import name

</section>
Expand Down Expand Up @@ -868,6 +869,7 @@ A total of 12 people contributed to this release. Thank you to the following con

<details>

- [`629ce7b`](https://github.com/stdlib-js/stdlib/commit/629ce7bfa31b0d263f36fd597bb67acfc87689ff) - **fix:** ensure support for typed arrays larger than 2^32-1 _(by Athan Reines)_
- [`b8c41df`](https://github.com/stdlib-js/stdlib/commit/b8c41df78cd2cdc9cd3c3c6b223759d32f4f6e14) - **docs:** update related packages sections [(#3915)](https://github.com/stdlib-js/stdlib/pull/3915) _(by stdlib-bot)_
- [`02fe522`](https://github.com/stdlib-js/stdlib/commit/02fe52268be65ac41e413c27cef0f1f83b94636a) - **refactor:** remove unused file _(by Athan Reines)_
- [`0c9faed`](https://github.com/stdlib-js/stdlib/commit/0c9faedab42d5b816921487891de6aef305aa54f) - **docs:** update namespace table of contents [(#3902)](https://github.com/stdlib-js/stdlib/pull/3902) _(by stdlib-bot, Philipp Burckhardt)_
Expand Down
3 changes: 2 additions & 1 deletion to-fancy/lib/factory.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@

// MODULES //

var isCollection = require( '@stdlib/assert/is-collection' );
var isArrayLike = require( '@stdlib/assert/is-array-like' );
var Proxy = require( '@stdlib/proxy/ctor' );
var arraylike2object = require( './../../base/arraylike2object' );
Expand Down Expand Up @@ -124,7 +125,7 @@ function factory() {
var arr;
var dt;
var o;
if ( !isArrayLike( x ) ) {
if ( !isArrayLike( x ) && !isCollection( x ) ) {
throw new TypeError( format( 'invalid argument. First argument must be array-like. Value: `%s`.', x ) );
}
if ( hasProxySupport ) {
Expand Down
1 change: 0 additions & 1 deletion to-fancy/lib/set.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ var setSlice = require( './set_slice.js' );
*
* @private
* @param {Object} ctx - context object
* @param {Function} ctx.setter - accessor for setting array elements
* @param {string} ctx.dtype - array data type
* @param {boolean} ctx.strict - boolean indicating whether to enforce strict bounds checking
* @param {Function} ctx.validator - function for validating new values
Expand Down

0 comments on commit ab3fa9d

Please sign in to comment.