function isNum(str) {
if (typeof str == "number") {
return true;
}
if (typeof str !== "string") {
return false;
}
if (str === "") {
return false;
}
return Number(str) == str;
}