Node.js examples for String:Parse
String empty validator
isEmpty: function(data){ if(data.trim() === ""){ return true; }else{//from www .j av a 2 s . c o m return false; } },