Merge commit 'f7c3dc2' into HEAD
# Conflicts: # src/nodeClass.js
This commit is contained in:
@@ -385,7 +385,7 @@ class Measurement {
|
||||
const lowPass = this.lowPassFilter(arr); // Apply low-pass filter
|
||||
const highPass = this.highPassFilter(arr); // Apply high-pass filter
|
||||
|
||||
return arr.map((val, idx) => lowPass + highPass - val).pop(); // Combine the filters
|
||||
return arr.map((val, _idx) => lowPass + highPass - val).pop(); // Combine the filters
|
||||
}
|
||||
|
||||
weightedMovingAverage(arr) {
|
||||
@@ -565,7 +565,7 @@ const configuration = {
|
||||
enabled: true,
|
||||
},
|
||||
functionality: {
|
||||
positionVsParent: "upstream"
|
||||
positionVsParent: POSITIONS.UPSTREAM
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user