findUpdated.js 130 B

123
  1. export default function findUpdated(source, target) {
  2. return _pickBy(target, (value, key) => !_isEqual(value, source?.[key]))
  3. }