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

ReactiveX / rxjs / 3704
97%

Build:
DEFAULT BRANCH: master
Ran 24 Oct 2016 09:15PM UTC
Jobs 1
Files 341
Run time 20s
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

pending completion
3704

push

travis-ci

web-flow
fix(reduce/scan): both scan/reduce operators now accepts `undefined` itself as a valid seed (#2050)

* fix(scan): scan operator now accepts `undefined` itself as a valid seed value

Array#reduce supports `undefined` as a valid seed value, so it seems
natural that we would too for scan

```js
of(1, 2, 3).scan((acc, x) => acc + ' ' + x, undefined);
// "undefined 1"
// "undefined 1 2"
// "undefined 1 2 3"
```

fixes #2047

* fix(reduce): reduce operator now accepts `undefined` itself as a valid seed value

Array#reduce supports `undefined` as a valid seed value, so it seems
natural that we would too.

```js
of(1, 2, 3).reduce((acc, x) => acc + ' ' + x, undefined);
// "undefined 1 2 3"
```

16 of 16 new or added lines in 2 files covered. (100.0%)

6427 of 6611 relevant lines covered (97.22%)

619.08 hits per line

Jobs
ID Job ID Ran Files Coverage
1 3704.1 24 Oct 2016 09:15PM UTC 0
97.22
Travis Job 3704.1
Source Files on build 3704
Detailed source file information is not available for this build.
  • Back to Repo
  • Travis Build #3704
  • fee7585b on github
  • Prev Build on master (#3702)
  • Next Build on master (#3709)
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

© 2026 Coveralls, Inc