ant-design-vue/components/_util/shallowequal.ts
2020-08-22 14:37:39 +08:00

7 lines
206 B
TypeScript

import shallowequal from 'shallowequal';
import { toRaw } from 'vue';
export default function(value, other, customizer, thisArg) {
return shallowequal(toRaw(value), toRaw(other), customizer, thisArg);
}