00001 00033 function eq(value, other) { 00034 return value === other || (value !== value && other !== other); 00035 } 00036 00037 module.exports = eq;