frontend/.pnpm-store/v3/files/56/c9b09413356a9088332ddaa3c675276cce270f11b8ef8727f4992ae738db237c88f372e07027d6052b76ab0d2a81288cdfd1b15860f61ee31d31171e597816

13 lines
665 B
Plaintext

import { EmptyError } from '../util/EmptyError';
import { filter } from './filter';
import { takeLast } from './takeLast';
import { throwIfEmpty } from './throwIfEmpty';
import { defaultIfEmpty } from './defaultIfEmpty';
import { identity } from '../util/identity';
export function last(predicate, defaultValue) {
var hasDefaultValue = arguments.length >= 2;
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(); }));
};
}
//# sourceMappingURL=last.js.map