You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							32 lines
						
					
					
						
							718 B
						
					
					
				
			
		
		
	
	
							32 lines
						
					
					
						
							718 B
						
					
					
				"use strict";
 | 
						|
 | 
						|
exports.__esModule = true;
 | 
						|
exports.default = shallowEqual;
 | 
						|
 | 
						|
function is(x, y) {
 | 
						|
  if (x === y) {
 | 
						|
    return x !== 0 || y !== 0 || 1 / x === 1 / y;
 | 
						|
  } else {
 | 
						|
    return x !== x && y !== y;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
function shallowEqual(objA, objB) {
 | 
						|
  if (is(objA, objB)) return true;
 | 
						|
 | 
						|
  if (typeof objA !== 'object' || objA === null || typeof objB !== 'object' || objB === null) {
 | 
						|
    return false;
 | 
						|
  }
 | 
						|
 | 
						|
  const keysA = Object.keys(objA);
 | 
						|
  const keysB = Object.keys(objB);
 | 
						|
  if (keysA.length !== keysB.length) return false;
 | 
						|
 | 
						|
  for (let i = 0; i < keysA.length; i++) {
 | 
						|
    if (!Object.prototype.hasOwnProperty.call(objB, keysA[i]) || !is(objA[keysA[i]], objB[keysA[i]])) {
 | 
						|
      return false;
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  return true;
 | 
						|
} |