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

kwonoj / RxJS / 1555
98%

Build:
DEFAULT BRANCH: master
Ran 24 Oct 2016 11:12PM UTC
Jobs 1
Files 341
Run time 42s
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
1555

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"
```

6427 of 6611 relevant lines covered (97.22%)

619.08 hits per line

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