"use strict";
functionisNaN(value) {
// Unlike global isNaN, this avoids type coercion// typeof check avoids IE host object issues, hat tip to// lodashvar val = value; // JsLint thinks value !== value is "weird"returntypeof value === "number" && value !== val;
}
module.exports = isNaN;