fd22b0bf58
V2 (Laravel re-make)
17 lines
564 B
JavaScript
Vendored
17 lines
564 B
JavaScript
Vendored
'use strict';
|
|
|
|
function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }
|
|
|
|
module.exports = function min(key) {
|
|
if (key !== undefined) {
|
|
var filtered = this.items.filter(function (item) {
|
|
return item[key] !== undefined;
|
|
});
|
|
|
|
return Math.min.apply(Math, _toConsumableArray(filtered.map(function (item) {
|
|
return item[key];
|
|
})));
|
|
}
|
|
|
|
return Math.min.apply(Math, _toConsumableArray(this.items));
|
|
}; |