Nodejs String Contains contains(str, index)

Here you can find the source of contains(str, index)

Method Source Code

// String Contains
String.prototype.contains = function(str, index) {
   return (this.indexOf(str, index) !== -1) ? true : false;
}

Related

  1. contains(str)
    String.prototype.contains = function(str)
      return this.indexOf(str) != -1;
    };
    
  2. contains(str)
    String.prototype.contains = function(str){
      var filters = str.toLowerCase().split(/[ ,_\-]+/);
      var tokens = this.toLowerCase().split(/[ ,\-]+/);
      for (var i = 0; i < filters.length; i++) {
        var match = false;
        for (var j = 0; j < tokens.length; j++) {
          if (tokens[j].startsWith(filters[i])) {
            match = true;
            break;
    ...
    
  3. contains(str)
    String.prototype.contains = function (str) {
        return this.indexOf(str) > -1;
    };
    String.prototype.startsWith = function (str) {
        return this.indexOf(str) == 0;
    };
    String.prototype.endsWith = function (str) {
        return this.indexOf(str) > -1 && (this.indexOf(str) + str.length) == this.length;
    };
    ...
    
  4. contains(str)
    String.prototype.contains = function(str) {
      return this.indexOf(str) > -1;
    };
    String.prototype.endsWith = function(suffix) {
      return this.indexOf(suffix, this.length - suffix.length) !== -1;
    };
    
  5. contains(str, ignoreCase)
    String.prototype.contains = function(str, ignoreCase) {
        return (ignoreCase ? this.toUpperCase() : this)
                .indexOf(ignoreCase ? str.toUpperCase() : str) >= 0;
    };
    String.prototype.startsWith = function(str) {
        return this.indexOf(str) == 0;
    };
    
  6. contains(str,startIndex)
    String.prototype.contains = function(str,startIndex) {
        return -1 !== String.prototype.indexOf.call(this,str,startIndex);
    };
    
  7. contains(strPattern)
    String.prototype.contains = function(strPattern){
      if(typeof strPattern !== 'string') return false;
      var pattern = new RegExp(strPattern, "i");
      return pattern.test(this);
    console.log("teste".contains("teste"));
    
  8. contains(string)
    String.prototype.contains = function(string) {
      return (this.indexOf(string) != -1);
    
  9. contains(string)
    String.prototype.contains = function(string) {
        return this.indexOf(string) > -1;
    };