Node.js examples for String:Parse
Is string value integer
Validator.isInteger = function(value) { if (parseInt(value, 10)) { return true; } else {/*from w ww.j a v a 2s .c o m*/ return false; } };