Nodejs String Contains contains(pattern)

Here you can find the source of contains(pattern)

Method Source Code

String.prototype.contains = function(pattern) {
    return this.indexOf(pattern.canonize())>=0;
};

Related

  1. contains(needle)
    String.prototype.contains = function(needle) {
        return this.indexOf(needle) >= 0;
    };
    
  2. contains(obj)
    String.prototype.contains = function (obj) {
        return this.indexOf(obj) >= 0;
    };
    
  3. contains(pStr)
    String.prototype.contains = function(pStr) {
      return this.indexOf(pStr) > -1;
    };
    String.prototype.doUpperCase = function(pBeginIndex, pLength) {
      pLength = pLength || 1;
      return this.substring(pBeginIndex, pLength).toUpperCase() + this.substring(pBeginIndex + pLength);
    };
    String.prototype.doLowerCase = function(pBeginIndex, pLength) {
      pLength = pLength || 1;
    ...
    
  4. contains(palavra)
    String.prototype.contains = function (palavra) {
      let indice = this.trim().indexOf(palavra);
      return indice >= 0;
    
  5. contains(pattern)
    String.prototype.contains = function(pattern) {
      return this.indexOf(pattern) !== -1;
    };
    
  6. contains(s)
    String.prototype.contains = function(s) {
      return this.indexOf(s) >= 0;
    };
    
  7. contains(s)
    String.prototype.contains = function(s){
        return this.indexOf(s) != -1;
    };
    
  8. contains(s)
    String.prototype.contains = function(s){
       return (this.indexOf(s)!=-1);
    
  9. contains(search)
    String.prototype.contains = function (search) {
        if (!search) {
            return false;
        return this.indexOf(search) != -1;
    };