• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

ckapps / rxjs / 6722734432

01 Nov 2023 05:04PM CUT coverage: 100.0%. Remained the same
6722734432

Pull #283

github

web-flow
chore(deps-dev): bump eslint from 8.39.0 to 8.52.0

Bumps [eslint](https://github.com/eslint/eslint) from 8.39.0 to 8.52.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/compare/v8.39.0...v8.52.0)

---
updated-dependencies:
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Pull Request #283: chore(deps-dev): bump eslint from 8.39.0 to 8.52.0

24 of 24 branches covered (100.0%)

Branch coverage included in aggregate %.

152 of 152 relevant lines covered (100.0%)

10.45 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

100.0
/src/array/operators/transformation/array-concat.operator.ts
1
import { OperatorFunction } from 'rxjs';
2
import { map } from 'rxjs/operators';
2✔
3

4
/**
5
 * @returns
6
 * An operator that collects streams of arrays and
7
 * emits an concatted array of the sources emission
8
 *
9
 * @example
10
 * combineLatest([of(['a']), of(['b', 'c']), of(['d'])]).pipe(arrayConcat());
11
 * // (a|) -> a: ['a', 'b', 'c', 'd']
12
 */
13
export function arrayConcat<T>(): OperatorFunction<T[][], T[]> {
2✔
14
  return map(values => values.reduce((acc, cur) => [...acc, ...cur], []));
12✔
15
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc