????
Current Path : C:/inetpub/vhost/invest.gdtsolutions.vn/api/node_modules/rxjs/dist/esm5/internal/operators/ |
Current File : C:/inetpub/vhost/invest.gdtsolutions.vn/api/node_modules/rxjs/dist/esm5/internal/operators/max.js |
import { reduce } from './reduce'; import { isFunction } from '../util/isFunction'; export function max(comparer) { return reduce(isFunction(comparer) ? function (x, y) { return (comparer(x, y) > 0 ? x : y); } : function (x, y) { return (x > y ? x : y); }); } //# sourceMappingURL=max.js.map