
PK 
| ADDRLIN : /home/questend/public_html/domains/flaxzy.com/node_modules/collect.js/src/methods/ |
| Current File : /home/questend/public_html/domains/flaxzy.com/node_modules/collect.js/src/methods/max.js |
'use strict';
module.exports = function max(key) {
if (typeof key === 'string') {
const filtered = this.items.filter(item => item[key] !== undefined);
return Math.max(...filtered.map(item => item[key]));
}
return Math.max(...this.items);
};

