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 341B

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