@reactivex/ix-esnext-esm
Version:
The Interactive Extensions for JavaScript
13 lines (11 loc) • 350 B
JavaScript
import { AsyncIterableX } from '../../asynciterable/asynciterablex';
import { max } from '../../asynciterable/max';
import { identityAsync } from '../../util/identity';
/**
* @ignore
*/
export function maxProto(selector = identityAsync) {
return max(this, selector);
}
AsyncIterableX.prototype.max = maxProto;
//# sourceMappingURL=max.mjs.map