Skip to content

Commit 7db0ee2

Browse files
committed
Auto-generated commit
1 parent f40a4b8 commit 7db0ee2

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<section class="release" id="unreleased">
66

7-
## Unreleased (2024-12-29)
7+
## Unreleased (2024-12-31)
88

99
<section class="packages">
1010

@@ -799,6 +799,7 @@ A total of 12 issues were closed in this release:
799799

800800
##### Bug Fixes
801801

802+
- [`78087d9`](https://github.com/stdlib-js/stdlib/commit/78087d9a551783d642d885fb42b89b4e23acd671) - provide missing argument to function
802803
- [`629ce7b`](https://github.com/stdlib-js/stdlib/commit/629ce7bfa31b0d263f36fd597bb67acfc87689ff) - ensure support for typed arrays larger than 2^32-1
803804
- [`dcfa1d6`](https://github.com/stdlib-js/stdlib/commit/dcfa1d62126625847df6517662851e812ef997be) - update import name
804805

@@ -869,6 +870,8 @@ A total of 12 people contributed to this release. Thank you to the following con
869870

870871
<details>
871872

873+
- [`78087d9`](https://github.com/stdlib-js/stdlib/commit/78087d9a551783d642d885fb42b89b4e23acd671) - **fix:** provide missing argument to function _(by Athan Reines)_
874+
- [`c13c153`](https://github.com/stdlib-js/stdlib/commit/c13c1532c804118dc9ccbcb81867d7723215f671) - **docs:** document exceptions _(by Athan Reines)_
872875
- [`64e4bd6`](https://github.com/stdlib-js/stdlib/commit/64e4bd6055042207ce2e5ae6687ca8992b06367f) - **docs:** fix missing option description _(by Athan Reines)_
873876
- [`0d8ee2d`](https://github.com/stdlib-js/stdlib/commit/0d8ee2dd2425d7414487f65940dfc4c25c79ad1d) - **docs:** update related packages sections [(#4334)](https://github.com/stdlib-js/stdlib/pull/4334) _(by stdlib-bot)_
874877
- [`08a93ce`](https://github.com/stdlib-js/stdlib/commit/08a93ce0f545c4aaf6e1edbcd87b7c3db7338899) - **docs:** update copy _(by Athan Reines)_

to-fancy/lib/get_element.js

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ var resolveIndex = require( './resolve_index.js' );
3434
* @param {Object} ctx - context object
3535
* @param {Function} ctx.getter - accessor for retrieving array elements
3636
* @param {boolean} ctx.strict - boolean indicating whether to enforce strict bounds checking
37+
* @throws {RangeError} index exceeds array bounds
3738
* @returns {*} result
3839
*/
3940
function getElement( target, property, ctx ) {

to-fancy/lib/set.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ function factory( ctx ) {
6969
if ( isIntegerString( property ) ) {
7070
return setElement( target, property, value, ctx );
7171
}
72-
if ( hasProperty( property ) || !isString( property ) ) {
72+
if ( hasProperty( target, property ) || !isString( property ) ) {
7373
return setValue( target, property, value, ctx );
7474
}
7575
if ( isArrayIndexString( property ) ) {

to-fancy/lib/set_element.js

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ var resolveIndex = require( './resolve_index.js' );
4040
* @param {(Function|null)} ctx.preSetElement - function for normalizing new values (if necessary)
4141
* @throws {TypeError} assigned value cannot be safely cast to the target array data type
4242
* @throws {TypeError} target array must have a supported data type
43+
* @throws {RangeError} index exceeds array bounds
4344
* @returns {boolean} boolean indicating whether assignment succeeded
4445
*/
4546
function setElement( target, property, value, ctx ) {

0 commit comments

Comments
 (0)