UNPKG

ut2

Version:

一个现代 JavaScript 实用工具库。[点击查看在线文档]。

10 lines (8 loc) 283 B
function eq(value, other, strictCheck) { if (strictCheck === void 0) { strictCheck = false; } if (value === other) { return strictCheck ? value !== 0 || 1 / value === 1 / other : true; } return value !== value && other !== other; } export { eq as default };