Node.js examples for String:Trim
Check if string is empty no trim
/**//from w w w. j av a2s. co m * Check if string is empty no trim * @param {string} */ isEmptyNoTrim: function(value) { return (value === '' || (value == null) || (value.length === 0)); }