# Normalize WheelMouse wheel normalization across multiple multiple browsers.## Original sourceThis code is extracted and from Facebook's [Fixed Data Table](https://github.com/facebook/fixed-data-table). Apart from import fixes, the code is unmodified.## UsageJust add it as an dependency in npm.You can use it as follows:```jsimportnormalizeWheelfrom'normalize-wheel';document.addEventListener('mousewheel',function(event){constnormalized=normalizeWheel(event);console.log(normalized.pixelX,normalized.pixelY);});```## LicenseSee the `LICENSE` file.