Skip to content

Commit d51f9b6

Browse files
committed
Auto-generated commit
1 parent 1b8f689 commit d51f9b6

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-09-29)
7+
## Unreleased (2025-09-30)
88

99
<section class="features">
1010

@@ -162,6 +162,7 @@ A total of 11 issues were closed in this release:
162162

163163
<details>
164164

165+
- [`586b535`](https://github.com/stdlib-js/stdlib/commit/586b5355d0ef01720adc2a4f6549bacf63f2432d) - **docs:** update extended description [(#8167)](https://github.com/stdlib-js/stdlib/pull/8167) _(by stdlib-bot)_
165166
- [`e00e353`](https://github.com/stdlib-js/stdlib/commit/e00e353d8e5861c42098e0322f7ba11ee784529d) - **chore:** resolve javascript lint errors [(#8158)](https://github.com/stdlib-js/stdlib/pull/8158) _(by Zuhair Ahmad, Athan Reines)_
166167
- [`d94514b`](https://github.com/stdlib-js/stdlib/commit/d94514bc9418f5b42df6233204d5005d53af00ca) - **docs:** clean-up TSDoc declaration comments _(by Philipp Burckhardt)_
167168
- [`07459d3`](https://github.com/stdlib-js/stdlib/commit/07459d3be48a57aac6cc018cbb456749fad79f6a) - **chore:** remove private annotations _(by Philipp Burckhardt)_

docs/types/index.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4399,13 +4399,13 @@ interface Namespace {
43994399
*
44004400
* - The transform function is provided three arguments:
44014401
*
4402-
* - `key`: object key
4403-
* - `value`: object value corresponding to `key`
4404-
* - `obj`: the input object
4402+
* - `key`: object key.
4403+
* - `value`: object value corresponding to `key`.
4404+
* - `obj`: the input object.
44054405
*
44064406
* - The value returned by a transform function should be a value which can be serialized as an object key. Hence, beware when providing objects having values which are themselves objects. The function relies on native object serialization (`#toString`) when converting transform function return values to keys.
44074407
*
4408-
* - Insertion order is not guaranteed, as object key enumeration is not specified according to the ECMAScript specification. In practice, however, most engines use insertion order to sort an object's keys, thus allowing for deterministic inversion.
4408+
* - In older JavaScript engines, insertion order is not guaranteed, as object key enumeration was not specified according to the ECMAScript specification in earlier editions. In practice, however, most older engines use insertion order to sort an object's keys, thus allowing for deterministic inversion.
44094409
*
44104410
* @param obj - input object
44114411
* @param opts - function options

0 commit comments

Comments
 (0)