kibana-riya
Version:
Kibana is an open source (Apache Licensed), browser based analytics and search dashboard for Elasticsearch. Kibana is a snap to setup and start using. Kibana strives to be easy to get started with, while also being flexible and powerful, just like Elastic
23 lines (19 loc) • 673 B
JavaScript
;
var reduce = require('../lib/reduce.js');
var Chainable = require('../lib/classes/chainable');
module.exports = new Chainable('min', {
args: [{
name: 'inputSeries',
types: ['seriesList']
}, {
name: 'value',
types: ['seriesList', 'number'],
help: 'Sets the point to whichever is lower, the existing value, or the one passed.' + ' If passing a seriesList it must contain exactly 1 series.'
}],
help: 'Minimum values of one or more series in a seriesList to each position, in each series, of the input seriesList',
fn: function minFn(args) {
return reduce(args, function (a, b) {
return Math.min(a, b);
});
}
});