ui
This commit is contained in:
+17
@@ -0,0 +1,17 @@
|
||||
'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));
|
||||
};
|
||||
Reference in New Issue
Block a user