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