Checks if value is not equal to the provided value.

const notNan = notValue(NaN);

notNan(NaN); // Error: notValue
notNan(123); // passes