FurBall/uni_modules/tuniaoui-vue3/libs/lodash/_eq.ts

4 lines
112 B
TypeScript

export function eq(value: any, other: any) {
return value === other || (value !== value && other !== other)
}