frontend/.pnpm-store/v3/files/21/d15d33b70d3ec17397a008390f2f3960fcf6b8dac47dda102ee96ae2859cfa8dc5cc87d28e0172d42a6a7335a1997e5521fa54faaaefb99e9cecb5e938a89d

11 lines
388 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var reduce_1 = require("./reduce");
function max(comparer) {
var max = (typeof comparer === 'function')
? function (x, y) { return comparer(x, y) > 0 ? x : y; }
: function (x, y) { return x > y ? x : y; };
return reduce_1.reduce(max);
}
exports.max = max;
//# sourceMappingURL=max.js.map