Mouse wheel normalization across multiple multiple browsers.
npm install normalize-wheelYou can use it as follows:
``js
import normalizeWheel from 'normalize-wheel';
document.addEventListener('mousewheel', function (event) {
const normalized = normalizeWheel(event);
console.log(normalized.pixelX, normalized.pixelY);
});
`