1 line
353 B
JSON
1 line
353 B
JSON
{"ast":null,"code":"import { reduce } from './reduce';\nimport { isFunction } from '../util/isFunction';\nexport function max(comparer) {\n return reduce(isFunction(comparer) ? (x, y) => comparer(x, y) > 0 ? x : y : (x, y) => x > y ? x : y);\n}\n//# sourceMappingURL=max.js.map","map":null,"metadata":{},"sourceType":"module","externalDependencies":[]} |