sam-lex
Results
2
comments of
sam-lex
Is this possible? I've been looking for modules that has this, but found none so far. I want to make an app to control another computer's keyboard/mouse, just like [Synergy](https://symless.com/synergy)....
Based on @iFlash answer, I made it using median instead of averages. ```typescript private _getMedian(arr: number[]): number { arr.sort((a, b) => a - b); const half = Math.floor( arr.length /...