Nodejs String Empty Check isEmpty()

Here you can find the source of isEmpty()

Method Source Code

String.prototype.isEmpty = function(){
    return (this === null || this === '');
};

Related

  1. isEmpty()
    String.prototype.isEmpty = function() {
      return (this == '');
    };
    
  2. isEmpty()
    String.prototype.isEmpty = function () {
      "use strict";
      return (this.length === 0 || !this.trim());
    };
    
  3. isEmpty()
    String.prototype.isEmpty=function(){
      return this.trim()=="";
    };
    
  4. isEmpty()
    String.prototype.isEmpty = function () {
      return (!this || this == "[object Null]" || this == "" || this == "undefined");
    
  5. isEmpty()
    String.prototype.isEmpty = function() {
      return this.trim() === "";
    
  6. isEmpty()
    String.prototype.isEmpty = function() {
       return (this.length === 0 || !this.trim());
    Array.prototype.appendStringToElementAtIndex = function(index, str) {
        if(typeof this[index] === 'undefined' || typeof this[index] !== 'string') return false;
        this[index] += ' ' + str;
    };
    
  7. isEmpty()
    String.prototype.isEmpty = function() {
        return (this.length === 0 || !this.trim());
    };
    
  8. isEmpty()
    String.prototype.isEmpty = function(){
        if(typeof this !== 'string') {
            if(typeof this === 'object' && !(this instanceof String)){
                throw {
                    name: 'InvalidType',
                    message: 'The current type is not a String'
        return this.length === 0;
    };
    
  9. isEmpty()
    String.prototype.isEmpty = function() {
      var rtn = (this == null || this == undefined || this.trim() == '');
      return rtn;
    };