UNPKG

ut2

Version:

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

12 lines (9 loc) 293 B
'use strict'; 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; } module.exports = eq;