Skip to content

Commit f6368c9

Browse files
committed
Auto-generated commit
1 parent eee67d4 commit f6368c9

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
timeout-minutes: 5
3939
- name: Replace all GitHub links to individual packages with npm links
4040
run: |
41-
find . -type f -name '*.md' -print0 | xargs -0 sed -Ei 's/@stdlib\/([^:]*)\]: https:\/\/github.com\/stdlib-js/@stdlib\/\1\]: https:\/\/www.npmjs.com\/package\/@stdlib/g'
41+
find . -type f -name '*.md' -print0 | xargs -0 sed -Ei '/tree\/main/b; s/@stdlib\/([^:]*)\]: https:\/\/github.com\/stdlib-js/@stdlib\/\1\]: https:\/\/www.npmjs.com\/package\/@stdlib/g'
4242
- name: Replace all stdlib GitHub dependencies with the respective npm packages
4343
run: |
4444
find package.json -type f -print0 | xargs -0 sed -Ei 's/"github:stdlib-js[^"]*"/"^0.0.x"/g'

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Justin Dennison <justin1dennison@gmail.com>
1616
Marcus <mfantham@users.noreply.github.com>
1717
Matt Cochrane <matthew.cochrane.eng@gmail.com>
1818
Milan Raj <rajsite@users.noreply.github.com>
19+
Momtchil Momtchev <momtchil@momtchev.com>
1920
Ognjen Jevremović <ognjenjevremovic@users.noreply.github.com>
2021
Philipp Burckhardt <pburckhardt@outlook.com>
2122
Ricky Reusser <rsreusser@gmail.com>

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -395,9 +395,9 @@ countByAsync( files, indicator, done );
395395

396396
## See Also
397397

398-
- [`@stdlib/utils/count-by`][@stdlib/utils/count-by]: group values according to an indicator function and return group counts.
399-
- [`@stdlib/utils/async/group-by`][@stdlib/utils/async/group-by]: group values according to an indicator function.
400-
- [`@stdlib/utils/async/tabulate-by`][@stdlib/utils/async/tabulate-by]: generate a frequency table according to an indicator function.
398+
- <span class="package-name">[`@stdlib/utils/count-by`][@stdlib/utils/count-by]</span><span class="delimiter">: </span><span class="description">group values according to an indicator function and return group counts.</span>
399+
- <span class="package-name">[`@stdlib/utils/async/group-by`][@stdlib/utils/async/group-by]</span><span class="delimiter">: </span><span class="description">group values according to an indicator function.</span>
400+
- <span class="package-name">[`@stdlib/utils/async/tabulate-by`][@stdlib/utils/async/tabulate-by]</span><span class="delimiter">: </span><span class="description">generate a frequency table according to an indicator function.</span>
401401

402402
</section>
403403

lib/limit.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ function limit( collection, opts, indicator, done ) {
7575
for ( i = 0; i < lim; i++ ) {
7676
// This guard is necessary to protect against synchronous functions which exhaust all collection elements...
7777
if ( idx < maxIndex ) {
78-
next(); // eslint-disable-line callback-return
78+
next(); // eslint-disable-line node/callback-return
7979
}
8080
}
8181
/**

0 commit comments

Comments
 (0)