Skip to content
Snippets Groups Projects
Commit e538bd51 authored by spencerkee's avatar spencerkee
Browse files

Fix array equality stuff

parent 4dae5384
No related branches found
No related tags found
No related merge requests found
......@@ -232,7 +232,8 @@ recordingButtons.forEach((button, index) => {
let ourStartStop = codeDataButtonIndexes[index]; // [14, 19]
let matchingStartStopIndexes = [];
for (let i = 0; i < codeDataButtonIndexes.length; i++) {
if (codeDataButtonIndexes[i] === ourStartStop) {
if (JSON.stringify(codeDataButtonIndexes[i]) === JSON.stringify(ourStartStop)) {
// if (codeDataButtonIndexes[i] === ourStartStop) {
matchingStartStopIndexes.push(i);
}
}
......@@ -282,7 +283,6 @@ recordingButtons.forEach((button, index) => {
accumulator += filteredAnnotatedVals[i][2];
}
// debugger;
// let stringBestValues = bestValues.map(a => a[0]);
// TODO bestValues can contain duplicates, removing here
bestValues = bestValues.filter((value, index, self) => self.indexOf(value) === index);
......@@ -299,7 +299,6 @@ recordingButtons.forEach((button, index) => {
// // TODO Only add unique ones.
// codeDataButtonSubstrings[0].push(...bestValues.map(codeData => codeData[0]));
// let junk = analyze(codeDataButtonSubstrings[0]);
// debugger;
// } else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment