UNPKG

modern-react-qr-reader

Version:

A react component for reading QR codes from the webcam. This is a modernized version of the JodusNodus package

10 lines (9 loc) 240 B
module.exports = function havePropsChanged(prevProps, nextProps, keys) { const changedProps = [] keys.forEach(key => { if (prevProps[key] != nextProps[key]) { changedProps.push(key) } }) return changedProps }