Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

max.js 255B

12345678
  1. import { reduce } from './reduce';
  2. export function max(comparer) {
  3. const max = (typeof comparer === 'function')
  4. ? (x, y) => comparer(x, y) > 0 ? x : y
  5. : (x, y) => x > y ? x : y;
  6. return reduce(max);
  7. }
  8. //# sourceMappingURL=max.js.map