Skip to content

Commit 0b20a2b

Browse files
committed
Auto-generated commit
1 parent fe3c6c8 commit 0b20a2b

File tree

49 files changed

+132
-130
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+132
-130
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 (2024-09-11)
7+
## Unreleased (2024-09-17)
88

99
<section class="packages">
1010

@@ -34,6 +34,7 @@ A total of 3 people contributed to this release. Thank you to the following cont
3434

3535
<details>
3636

37+
- [`cadb613`](https://github.com/stdlib-js/stdlib/commit/cadb6131d6ce50338d11757e88e8a910a0367983) - **chore:** update argument documentation styling _(by Philipp Burckhardt)_
3738
- [`3c5fc0d`](https://github.com/stdlib-js/stdlib/commit/3c5fc0d3d544356489d3da56507766eadd556fd1) - **style:** replace tabs with spaces in examples indentation _(by Philipp Burckhardt)_
3839
- [`8edb71d`](https://github.com/stdlib-js/stdlib/commit/8edb71d3f64bdf44f51c35e24cfce3ff9932f844) - **test:** add tests to `utils/circular-buffer` _(by Karthik Prakash, Philipp Burckhardt, Athan Reines)_
3940

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
#
33
# Contributors listed in alphabetical order.
44

5+
Aayush Khanna <[email protected]>
56
Adarsh Palaskar <[email protected]>
67
Aditya Sapra <[email protected]>
78
AgPriyanshu18 <[email protected]>

any-by-right/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ var bool = anyByRight( arr, isNegative );
7373

7474
The invoked `function` is provided three arguments:
7575

76-
- `value`: collection element
77-
- `index`: collection index
78-
- `collection`: input collection
76+
- **value**: collection element.
77+
- **index**: collection index.
78+
- **collection**: input collection.
7979

8080
To set the function execution context, provide a `thisArg`.
8181

any-by/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ var bool = anyBy( arr, isPositive );
7373

7474
The invoked `function` is provided three arguments:
7575

76-
- `value`: collection element
77-
- `index`: collection index
78-
- `collection`: input collection
76+
- **value**: collection element.
77+
- **index**: collection index.
78+
- **collection**: input collection.
7979

8080
To set the function execution context, provide a `thisArg`.
8181

any-in-by/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@ var bool = anyInBy( obj, isPositive );
8181

8282
The invoked `function` is provided three arguments:
8383

84-
- `value`: property value
85-
- `key`: property key
86-
- `object`: input object
84+
- **value**: property value.
85+
- **key**: property key.
86+
- **object**: input object.
8787

8888
To set the function execution context, provide a `thisArg`.
8989

any-own-by/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@ var bool = anyOwnBy( obj, isPositive );
8585

8686
The invoked `function` is provided three arguments:
8787

88-
- `value`: property value
89-
- `key`: property key
90-
- `obj`: input object
88+
- **value**: property value.
89+
- **key**: property key.
90+
- **obj**: input object.
9191

9292
To set the function execution context, provide a `thisArg`.
9393

async/compose/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ f( 6, done ); // ((2*x)+3)/5
8181

8282
The last argument provided to each composed function is a `next` callback which accepts two arguments:
8383

84-
- `error`: error argument
85-
- `result`: function result
84+
- **error**: error argument.
85+
- **result**: function result.
8686

8787
**Only** the rightmost function is explicitly permitted to accept multiple arguments. All other functions are evaluated as **binary** functions.
8888

async/function-sequence/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ f( 6, done ); // ((2*x)+3)/5
8181

8282
The last argument provided to each function is a `next` callback which accepts two arguments:
8383

84-
- `error`: error argument
85-
- `result`: function result
84+
- **error**: error argument.
85+
- **result**: function result.
8686

8787
**Only** the leftmost function is explicitly permitted to accept multiple arguments. All other functions are evaluated as **binary** functions.
8888

bifurcate-by/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ var out = bifurcateBy( arr, predicate );
5656

5757
A `predicate` function is provided two arguments:
5858

59-
- `value`: collection element
60-
- `index`: collection index
59+
- **value**: collection element.
60+
- **index**: collection index.
6161

6262
```javascript
6363
function predicate( v, i ) {
@@ -72,8 +72,8 @@ var out = bifurcateBy( arr, predicate );
7272

7373
The function accepts the following `options`:
7474

75-
- `returns`: specifies the output format. If the option equals `'values'`, the function outputs element values. If the option equals `'indices'`, the function outputs element indices. If the option equals `'*'`, the function outputs both element indices and values. Default: `'values'`.
76-
- `thisArg`: execution context.
75+
- **returns**: specifies the output format. If the option equals `'values'`, the function outputs element values. If the option equals `'indices'`, the function outputs element indices. If the option equals `'*'`, the function outputs both element indices and values. Default: `'values'`.
76+
- **thisArg**: execution context.
7777

7878
By default, the function returns element values. To return element indices, set the `returns` option to `'indices'`.
7979

bifurcate-in/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ var out = bifurcateIn( obj, predicate );
6767

6868
A `predicate` function is provided two arguments:
6969

70-
- `value`: object value
71-
- `key`: object index
70+
- **value**: object value.
71+
- **key**: object index.
7272

7373
```javascript
7474
function predicate( v, k ) {
@@ -93,8 +93,8 @@ var out = bifurcateIn( obj, predicate );
9393

9494
The function accepts the following `options`:
9595

96-
- `returns`: specifies the output format. If the option equals `'values'`, the function outputs values. If the option equals `'keys'`, the function outputs keys. If the option equals `'*'`, the function outputs both keys and values. Default: `'values'`.
97-
- `thisArg`: execution context.
96+
- **returns**: specifies the output format. If the option equals `'values'`, the function outputs values. If the option equals `'keys'`, the function outputs keys. If the option equals `'*'`, the function outputs both keys and values. Default: `'values'`.
97+
- **thisArg**: execution context.
9898

9999
By default, the function returns object values. To return object keys, set the `returns` option to `'keys'`.
100100

0 commit comments

Comments
 (0)