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.

min.js 255B

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