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-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -121,7 +121,7 @@ indent_style = tab
121
121
[*.{md,md.txt}]
122
122
indent_style = space
123
123
indent_size = 4
124
-
trim_trailing_whitespace = false
124
+
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: CHANGELOG.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
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-01-13)
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 falsy, 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