UNPKG

react-qr-reader

Version:

A react component for reading QR codes from the webcam.

11 lines (10 loc) 256 B
"use strict"; module.exports = function havePropsChanged(prevProps, nextProps, keys) { var changedProps = []; keys.forEach(function (key) { if (prevProps[key] != nextProps[key]) { changedProps.push(key); } }); return changedProps; };