'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;