Last change
on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
591 bytes
|
Line | |
---|
1 | import { EmptyError } from '../util/EmptyError';
|
---|
2 | import { filter } from './filter';
|
---|
3 | import { take } from './take';
|
---|
4 | import { defaultIfEmpty } from './defaultIfEmpty';
|
---|
5 | import { throwIfEmpty } from './throwIfEmpty';
|
---|
6 | import { identity } from '../util/identity';
|
---|
7 | export function first(predicate, defaultValue) {
|
---|
8 | const hasDefaultValue = arguments.length >= 2;
|
---|
9 | return (source) => source.pipe(predicate ? filter((v, i) => predicate(v, i, source)) : identity, take(1), hasDefaultValue ? defaultIfEmpty(defaultValue) : throwIfEmpty(() => new EmptyError()));
|
---|
10 | }
|
---|
11 | //# sourceMappingURL=first.js.map |
---|
Note:
See
TracBrowser
for help on using the repository browser.