Your IP : 216.73.216.17


Current Path : /etc/kibana/node_modules/vega-statistics/node_modules/d3-array/src/
Upload File :
Current File : //etc/kibana/node_modules/vega-statistics/node_modules/d3-array/src/max.js

export default function max(values, valueof) {
  let max;
  if (valueof === undefined) {
    for (let value of values) {
      if (value != null
          && value >= value
          && (max === undefined || max < value)) {
        max = value;
      }
    }
  } else {
    let index = -1;
    for (let value of values) {
      if ((value = valueof(value, ++index, values)) != null
          && value >= value
          && (max === undefined || max < value)) {
        max = value;
      }
    }
  }
  return max;
}