Node.js examples for Date:Date Format
Validate required string
Validator.validateRequired = function(str) { if (str.length !== 0) { return true; } else {/*from w w w .j av a2 s .co m*/ return false; } };