You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .editorconfig
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -86,7 +86,6 @@ indent_style = tab
86
86
[*.{f,f.txt}]
87
87
indent_style = space
88
88
indent_size = 2
89
-
insert_final_newline = false
90
89
91
90
# Set properties for shell files:
92
91
[*.{sh,sh.txt}]
@@ -121,7 +120,7 @@ indent_style = tab
121
120
[*.{md,md.txt}]
122
121
indent_style = space
123
122
indent_size = 4
124
-
trim_trailing_whitespace = false
123
+
trim_trailing_whitespace = true # Note: this disables using two spaces to force a hard line break, which is permitted in Markdown. As we don't typically follow that practice (TMK), we should be safe to automatically trim.
Copy file name to clipboardExpand all lines: .github/PULL_REQUEST_TEMPLATE.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,6 @@
2
2
3
3
We are excited about your pull request, but unfortunately we are not accepting pull requests against this repository, as all development happens on the [main project repository](https://github.com/stdlib-js/stdlib). We kindly request that you submit this pull request against the [respective directory](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/utils/async/while) of the main repository where we’ll review and provide feedback.
4
4
5
-
If this is your first stdlib contribution, be sure to read the [contributing guide](https://github.com/stdlib-js/stdlib/blob/develop/CONTRIBUTING.md) which provides guidelines and instructions for submitting contributions. You may also consult the [development guide](https://github.com/stdlib-js/stdlib/blob/develop/docs/development.md) for help on developing stdlib.
5
+
If this is your first stdlib contribution, be sure to read the [contributing guide](https://github.com/stdlib-js/stdlib/blob/develop/CONTRIBUTING.md) which provides guidelines and instructions for submitting contributions. You may also consult the [development guide](https://github.com/stdlib-js/stdlib/blob/develop/docs/contributing/development.md) for help on developing stdlib.
6
6
7
7
We look forward to receiving your contribution! :smiley:
Copy file name to clipboardExpand all lines: CHANGELOG.md
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -4,14 +4,15 @@
4
4
5
5
<sectionclass="release"id="unreleased">
6
6
7
-
## Unreleased (2024-12-01)
7
+
## Unreleased (2025-03-10)
8
8
9
9
<sectionclass="commits">
10
10
11
11
### Commits
12
12
13
13
<details>
14
14
15
+
-[`321e49e`](https://github.com/stdlib-js/stdlib/commit/321e49e9965648f1b5eb6a840fe454959af0ec49) - **docs:** add missing periods to list items _(by Philipp Burckhardt)_
15
16
-[`6e9f42e`](https://github.com/stdlib-js/stdlib/commit/6e9f42e4c912485d9896eaa16c88b70fd3688e97) - **docs:** harmonize list formatting in repl.txt and ensure starting newline _(by Philipp Burckhardt)_
The `predicate` function is provided two arguments:
110
110
111
-
-`i`: iteration number (starting from zero)
112
-
-`clbk`: a callback indicating whether to invoke `fcn`
111
+
-`i`: iteration number (starting from zero).
112
+
-`clbk`: a callback indicating whether to invoke `fcn`.
113
113
114
114
The `clbk` function accepts two arguments:
115
115
116
-
-`error`: error object
117
-
-`bool`: test result
116
+
-`error`: error object.
117
+
-`bool`: test result.
118
118
119
119
If the test result is truthy, the function invokes `fcn`; otherwise, the function invokes the `done` callback.
120
120
121
121
The function to invoke is provided two arguments:
122
122
123
-
-`i`: iteration number (starting from zero)
124
-
-`next`: a callback which must be invoked before proceeding to the next iteration
123
+
-`i`: iteration number (starting from zero).
124
+
-`next`: a callback which must be invoked before proceeding to the next iteration.
125
125
126
126
The first argument of both `clbk` and `next` is an `error` argument. If either function is called with a truthy `error` argument, the function suspends execution and immediately calls the `done` callback for subsequent `error` handling.
127
127
@@ -309,7 +309,7 @@ See [LICENSE][stdlib-license].
0 commit comments