Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / rxjs / _esm5 / internal / operators / last.js
1 /** PURE_IMPORTS_START _util_EmptyError,_filter,_takeLast,_throwIfEmpty,_defaultIfEmpty,_util_identity PURE_IMPORTS_END */
2 import { EmptyError } from '../util/EmptyError';
3 import { filter } from './filter';
4 import { takeLast } from './takeLast';
5 import { throwIfEmpty } from './throwIfEmpty';
6 import { defaultIfEmpty } from './defaultIfEmpty';
7 import { identity } from '../util/identity';
8 export function last(predicate, defaultValue) {
9     var hasDefaultValue = arguments.length >= 2;
10     return function (source) { return source.pipe(predicate ? filter(function (v, i) { return predicate(v, i, source); }) : identity, takeLast(1), hasDefaultValue ? defaultIfEmpty(defaultValue) : throwIfEmpty(function () { return new EmptyError(); })); };
11 }
12 //# sourceMappingURL=last.js.map