Node.js examples for String:String Value
Check if a string is empty
function empty(s){ return ( ( s == null ) || ( s.length == 0 ) ); }