frontend/.pnpm-store/v3/files/3f/15d080a397159b6799e21824e04b3131912710b9876e6772977171a368861a61790346a8789ae86a17d16a1c8c35cd21de989a783d7c715d09a102ada04064

10 lines
341 B
Plaintext

/** PURE_IMPORTS_START _reduce PURE_IMPORTS_END */
import { reduce } from './reduce';
export function min(comparer) {
var min = (typeof comparer === 'function')
? function (x, y) { return comparer(x, y) < 0 ? x : y; }
: function (x, y) { return x < y ? x : y; };
return reduce(min);
}
//# sourceMappingURL=min.js.map