mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-05 05:29:01 +08:00
7 lines
206 B
JavaScript
7 lines
206 B
JavaScript
import shallowequal from 'shallowequal';
|
|
import { toRaw } from 'vue';
|
|
|
|
export default function(value, other, customizer, thisArg) {
|
|
return shallowequal(toRaw(value), toRaw(other), customizer, thisArg);
|
|
}
|