徐总多门店
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.
 
 
 
 
 
 

15 lines
383 B

var helperEqualCompare = require('./helperEqualCompare')
var helperDefaultCompare = require('./helperDefaultCompare')
/**
* 深度比较两个对象之间的值是否相等
*
* @param {Object} obj1 值1
* @param {Object} obj2 值2
* @return {Boolean}
*/
function isEqual (obj1, obj2) {
return helperEqualCompare(obj1, obj2, helperDefaultCompare)
}
module.exports = isEqual