String empty validator - Node.js String

Node.js examples for String:Parse

Description

String empty validator

Demo Code


  isEmpty: function(data){
    if(data.trim() === ""){
      return true;
    }else{//from   www  .j av  a 2 s .  c o m
      return false;
    }
  },

Related Tutorials