Skip to content

Commit 2a5612b

Browse files
committed
feat: update utils TypeScript declarations
Signed-off-by: stdlib-bot <[email protected]>
1 parent 29cde0f commit 2a5612b

File tree

1 file changed

+4
-4
lines changed
  • lib/node_modules/@stdlib/utils/docs/types

1 file changed

+4
-4
lines changed

lib/node_modules/@stdlib/utils/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)