Nodejs String Ends With endsWith(pattern)

Here you can find the source of endsWith(pattern)

Method Source Code

String.prototype.endsWith = function(pattern) {
    return (this.substr(this.length - pattern.length, pattern.length) == pattern);
};

Related

  1. endsWith(end)
    String.prototype.endsWith = function(end) {
      return this.indexOf(end) == this.length-end.length;
    };
    
  2. endsWith(end)
    String.prototype.endsWith = function(end) {
        if(end == '') return true;
        else if(end == null || end.length > this.length) return false;
        else return this.indexOf(end, this.length - end.length) !== -1;
    
  3. endsWith(matchstring)
    String.prototype.endsWith = function (matchstring) {
        return reverse(this).startsWith(reverse(matchstring));
    
  4. endsWith(needle)
    String.prototype.endsWith = function(needle) {
        return this.slice(-needle.length) == needle;
    
  5. endsWith(pattern)
    String.prototype.endsWith = function(pattern) {
      var d = this.length - pattern.length;
      return d >= 0 && this.lastIndexOf(pattern) === d;
    };
    
  6. endsWith(pattern)
    String.prototype.endsWith = function(pattern) {
        return (this.substr(this.length - pattern.length, pattern.length) === pattern);
    };
    
  7. endsWith(pattern)
    String.prototype.endsWith = function(pattern) {
        var d = this.length - pattern.length;
        return d >= 0 && this.lastIndexOf(pattern) === d;
    };
    
  8. endsWith(pattern)
    String.prototype.endsWith = String.prototype.endsWith || function ( pattern ) {
        var d = this.length - pattern.length;
        return d >= 0 && this.indexOf(pattern, d) === d;
    
  9. endsWith(pattern, caseSensitive)
    String.prototype.endsWith = function(pattern, caseSensitive) {
      var d, s;
      if (caseSensitive) {
        d = this.length - pattern.length;
        return d >= 0 && this.lastIndexOf(pattern) === d;
      } else {
        s = this.toLowerCase();
        pattern = pattern.toLowerCase();
        d = s.length - pattern.length;
    ...