UNPKG

react-qr-reader

Version:

A react component for reading QR codes from the webcam.

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