UNPKG

react-weblineindia-qrcode-scanner

Version:

ReactJS based QR Code Scanner component, allowing you to detect and decode QR codes.

11 lines (10 loc) 258 B
function havePropsChanged(prevProps, nextProps, keys) { var changedProps = []; keys.forEach(function (key) { if (prevProps[key] !== nextProps[key]) { changedProps.push(key); } }); return changedProps; } export default havePropsChanged;