Initial commit
This commit is contained in:
commit
78f8d225ee
21173 changed files with 2907774 additions and 0 deletions
22
node_modules/d3-array/src/maxIndex.js
generated
vendored
Normal file
22
node_modules/d3-array/src/maxIndex.js
generated
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
export default function maxIndex(values, valueof) {
|
||||
let max;
|
||||
let maxIndex = -1;
|
||||
let index = -1;
|
||||
if (valueof === undefined) {
|
||||
for (const value of values) {
|
||||
++index;
|
||||
if (value != null
|
||||
&& (max < value || (max === undefined && value >= value))) {
|
||||
max = value, maxIndex = index;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
for (let value of values) {
|
||||
if ((value = valueof(value, ++index, values)) != null
|
||||
&& (max < value || (max === undefined && value >= value))) {
|
||||
max = value, maxIndex = index;
|
||||
}
|
||||
}
|
||||
}
|
||||
return maxIndex;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue